Class NSListItemEntity
The list item entity contains generic list item information.
Constructors
NSListItemEntity()
Initializes a new instance of the NSListItemEntity class.
Declaration
NSListItemEntity Methods
GetDeleted()
Declaration
Bool GetDeleted() Examples
NSListItemEntity thing;
Bool deleted = thing.GetDeleted();
Returns
| Type | Description |
| Bool | True if the list item is marked as deleted. |
GetId()
Declaration
Integer GetId() Examples
NSListItemEntity thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | The identity of the list item. |
GetName()
Declaration
String GetName() Examples
NSListItemEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The name of the list item. |
GetRank()
Declaration
Integer GetRank() Examples
NSListItemEntity thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | The rank of the list item. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSListItemEntity thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String | The tooltip of the list item. |
GetUdListDefinitionId()
Declaration
Integer GetUdListDefinitionId() Examples
NSListItemEntity thing;
Integer udListDefinitionId = thing.GetUdListDefinitionId();
Returns
| Type | Description |
| Integer | The ID of the list which this list item belongs to. |
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted) Examples
NSListItemEntity thing;
Bool deleted;
thing.SetDeleted(deleted);
Parameters
| Type | Name | Description |
| Bool | deleted | True if the list item is marked as deleted. |
Returns
| Type | Description |
| Void |
SetId(Integer)
Declaration
Void SetId(Integer id) Examples
NSListItemEntity thing;
Integer id;
thing.SetId(id);
Parameters
| Type | Name | Description |
| Integer | id | The identity of the list item. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSListItemEntity thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | The name of the list item. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSListItemEntity thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | The rank of the list item. |
Returns
| Type | Description |
| Void |
SetTooltip(String)
Declaration
Void SetTooltip(String tooltip) Examples
NSListItemEntity thing;
String tooltip;
thing.SetTooltip(tooltip);
Parameters
| Type | Name | Description |
| String | tooltip | The tooltip of the list item. |
Returns
| Type | Description |
| Void |
SetUdListDefinitionId(Integer)
Declaration
Void SetUdListDefinitionId(Integer udListDefinitionId) Examples
NSListItemEntity thing;
Integer udListDefinitionId;
thing.SetUdListDefinitionId(udListDefinitionId);
Parameters
| Type | Name | Description |
| Integer | udListDefinitionId | The ID of the list which this list item belongs to. |
Returns
| Type | Description |
| Void |