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