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