Class NSListItem

Constructors

NSListItem()

Declaration

NSListItem

Methods

GetId()

Declaration

Integer GetId()

Examples

NSListItem thing;
Integer id = thing.GetId();

Returns

Type Description
Integer Primary key.

GetName()

Declaration

String GetName()

Examples

NSListItem thing;
String name = thing.GetName();

Returns

Type Description
String Display text name.

GetToolTip()

Declaration

String GetToolTip()

Examples

NSListItem thing;
String toolTip = thing.GetToolTip();

Returns

Type Description
String Description.

SetId(Integer)

Declaration

Void SetId(Integer id)

Examples

NSListItem thing;
Integer id;
thing.SetId(id);

Parameters

Type Name Description
Integer id Primary key.

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

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

Parameters

Type Name Description
String name Display text name.

Returns

Type Description
Void

SetToolTip(String)

Declaration

Void SetToolTip(String toolTip)

Examples

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

Parameters

Type Name Description
String toolTip Description.

Returns

Type Description
Void