Class NSProjectStatus
Carrier object for ProjectStatus.
Constructors
NSProjectStatus()
Initializes a new instance of the NSProjectStatus class.
Declaration
NSProjectStatus Methods
GetId()
Gets the primary key (ID) for the NSProjectStatus.
Declaration
Integer GetId() Examples
NSProjectStatus thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | NSProjectStatus Id. |
GetTooltip()
Gets the tooltip description for the NSProjectStatus list item.
Declaration
String GetTooltip() Examples
NSProjectStatus thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String | NSProjectStatus tooltip description. |
GetValue()
Gets the name of the NSProjectStatus.
Declaration
String GetValue() Examples
NSProjectStatus thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String | NSProjectStatus name. |
SetId(Integer)
Sets the primary key (ID) for the NSProjectStatus
Declaration
Void SetId(Integer id) Examples
NSProjectStatus thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |