Class NSDepartment
Also known as User Group.
Constructors
NSDepartment()
Initializes a new instance of the NSDepartment class.
Declaration
NSDepartment Methods
GetId()
Gets the primary key (ID) for the Department
Declaration
Integer GetId() Examples
NSDepartment thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer |
GetTooltip()
Gets the tooltip description for the Department list item.
Declaration
String GetTooltip() Examples
NSDepartment thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String |
GetValue()
Gets the name of the Department.
Declaration
String GetValue() Examples
NSDepartment thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String |
SetId(Integer)
Sets the primary key (ID) for the Department
Declaration
Void SetId(Integer id) Examples
NSDepartment thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |