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