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 |