Class NSUserGroup

The main user group that this user belongs to.

Constructors

NSUserGroup()

Initializes a new instance of the NSUserGroup class.

Declaration

NSUserGroup

Methods

GetDeleted()

Declaration

Bool GetDeleted()

Examples

NSUserGroup thing;
Bool deleted = thing.GetDeleted();

Returns

Type Description
Bool true means that this is a user group that no longer can be selected by the user.

GetId()

Declaration

Integer GetId()

Examples

NSUserGroup thing;
Integer id = thing.GetId();

Returns

Type Description
Integer Primary key.

GetRank()

Declaration

Integer GetRank()

Examples

NSUserGroup thing;
Integer rank = thing.GetRank();

Returns

Type Description
Integer Rank order.

GetTooltip()

Declaration

String GetTooltip()

Examples

NSUserGroup thing;
String tooltip = thing.GetTooltip();

Returns

Type Description
String Tooltip or other description.

GetValue()

Declaration

String GetValue()

Examples

NSUserGroup thing;
String value = thing.GetValue();

Returns

Type Description
String UserGroup name.

SetDeleted(Bool)

Marks a user group.

Declaration

Void SetDeleted(Bool deleted)

Examples

NSUserGroup thing;
Bool deleted;
thing.SetDeleted(deleted);

Parameters

Type Name Description
Bool deleted true means that this is a user group that no longer can be selected by the user.

Returns

Type Description
Void

SetId(Integer)

Declaration

Void SetId(Integer id)

Examples

NSUserGroup thing;
Integer id;
thing.SetId(id);

Parameters

Type Name Description
Integer id Primary key.

Returns

Type Description
Void

SetRank(Integer)

Declaration

Void SetRank(Integer rank)

Examples

NSUserGroup thing;
Integer rank;
thing.SetRank(rank);

Parameters

Type Name Description
Integer rank Rank order.

Returns

Type Description
Void

SetTooltip(String)

Declaration

Void SetTooltip(String tooltip)

Examples

NSUserGroup thing;
String tooltip;
thing.SetTooltip(tooltip);

Parameters

Type Name Description
String tooltip Tooltip or other description.

Returns

Type Description
Void

SetValue(String)

Declaration

Void SetValue(String value)

Examples

NSUserGroup thing;
String value;
thing.SetValue(value);

Parameters

Type Name Description
String value UserGroup name.

Returns

Type Description
Void