Class NSTag
Constructors
NSTag()
Initializes a new instance of the NSTag class.
Declaration
NSTag Methods
GetId()
Declaration
Integer GetId() Examples
NSTag thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | The ID of the ListItem. |
GetName()
Declaration
String GetName() Examples
NSTag thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The name of the ListItem. |
GetToolTip()
Declaration
String GetToolTip() Examples
NSTag thing;
String toolTip = thing.GetToolTip();
Returns
| Type | Description |
| String | The tooltip of the ListItem. |
SetId(Integer)
Declaration
Void SetId(Integer id) Examples
NSTag thing;
Integer id;
thing.SetId(id);
Parameters
| Type | Name | Description |
| Integer | id | The ID of the ListItem. |
Returns
| Type | Description |
| Void |