Class NSProjectStatus
Carrier object for ProjectStatus.
Syntax
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()
Returns
Type | Description |
---|---|
Integer | NSProjectStatus Id. |
Examples
NSProjectStatus thing;
Integer id = thing.GetId();
GetTooltip()
Gets the tooltip description for the NSProjectStatus list item.
Declaration
String GetTooltip()
Returns
Type | Description |
---|---|
String | NSProjectStatus tooltip description. |
Examples
NSProjectStatus thing;
String descr = thing.GetTooltip();
GetValue()
Gets the name of the NSProjectStatus.
Declaration
String GetValue()
Returns
Type | Description |
---|---|
String | NSProjectStatus name. |
Examples
NSProjectStatus thing;
String name = thing.GetValue();
SetId(Integer)
Sets the primary key (ID) for the NSProjectStatus
Declaration
Void SetId(Integer id)
Parameters
Type | Name | Description |
---|---|---|
Integer | id |
Returns
Type | Description |
---|---|
Void |
Examples
NSProjectStatus thing;
thing.SetId(123);
SetTooltip(String)
Sets the tooltip description for the NSProjectStatus list item.
Declaration
Void SetTooltip(String tooltip)
Parameters
Type | Name | Description |
---|---|---|
String | tooltip |
Returns
Type | Description |
---|---|
Void |
Examples
NSProjectStatus thing;
String descr = "something new";
thing.SetTooltip(descr);
SetValue(String)
Sets the name of the NSProjectStatus item.
Declaration
Void SetValue(String value)
Parameters
Type | Name | Description |
---|---|---|
String | value |
Returns
Type | Description |
---|---|
Void |
Examples
NSProjectStatus thing;
thing.SetValue("frotz");