Show / Hide Table of Contents

Class NSTag

Syntax

Constructors

NSTag()

Initializes a new instance of the NSTag class.

Declaration
NSTag

Methods

GetId()

Declaration
Integer GetId()
Returns
Type Description
Integer

The ID of the ListItem.

Examples
NSTag thing;
Integer id = thing.GetId();

GetName()

Declaration
String GetName()
Returns
Type Description
String

The name of the ListItem.

Examples
NSTag thing;
String name = thing.GetName();

GetToolTip()

Declaration
String GetToolTip()
Returns
Type Description
String

The tooltip of the ListItem.

Examples
NSTag thing;
String toolTip = thing.GetToolTip();

SetId(Integer)

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)

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)

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);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top