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