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

SetName(String)

Declaration

Void SetName(String name)

Examples

NSTag thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name The name of the ListItem.

Returns

Type Description
Void

SetToolTip(String)

Declaration

Void SetToolTip(String toolTip)

Examples

NSTag thing;
String toolTip;
thing.SetToolTip(toolTip);

Parameters

Type Name Description
String toolTip The tooltip of the ListItem.

Returns

Type Description
Void