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