Class NSMDOListItem
Carrier object for MDOListItem.
Constructors
NSMDOListItem()
Initializes a new instance of the NSMDOListItem class.
Declaration
NSMDOListItem Methods
GetChildItems()
Declaration
NSMDOListItem[] GetChildItems() Examples
NSMDOListItem thing;
NSMDOListItem[] childItems = thing.GetChildItems();
Returns
| Type | Description |
| NSMDOListItem[] | The child items of the NSMDOListItem. |
GetColorBlock()
Declaration
Integer GetColorBlock() Examples
NSMDOListItem thing;
Integer colorBlock = thing.GetColorBlock();
Returns
| Type | Description |
| Integer | The color indicator of the ListItem color block. |
GetDeleted()
Declaration
Bool GetDeleted() Examples
NSMDOListItem thing;
Bool deleted = thing.GetDeleted();
Returns
| Type | Description |
| Bool | The deleted status of the ListItem. |
GetExtraInfo()
Declaration
String GetExtraInfo() Examples
NSMDOListItem thing;
String extraInfo = thing.GetExtraInfo();
Returns
| Type | Description |
| String | Extra information added to the ListItem. Could be information such as sort order etc or other meta data. Custom field. |
GetFullName()
Declaration
String GetFullName() Examples
NSMDOListItem thing;
String fullName = thing.GetFullName();
Returns
| Type | Description |
| String | The name of the ListItem in its context. |
GetIconHint()
Declaration
String GetIconHint() Examples
NSMDOListItem thing;
String iconHint = thing.GetIconHint();
Returns
| Type | Description |
| String | The Icon hint of the ListItem. Custom field. |
GetId()
Declaration
Integer GetId() Examples
NSMDOListItem thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | The ID of the ListItem. |
GetName()
Declaration
String GetName() Examples
NSMDOListItem thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The name of the ListItem. |
GetRank()
Declaration
Integer GetRank() Examples
NSMDOListItem thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | The rank of the ListItem. |
GetStyleHint()
Declaration
String GetStyleHint() Examples
NSMDOListItem thing;
String styleHint = thing.GetStyleHint();
Returns
| Type | Description |
| String | Style hint indicating, information such as background color etc. Custom field. |
GetToolTip()
Declaration
String GetToolTip() Examples
NSMDOListItem thing;
String toolTip = thing.GetToolTip();
Returns
| Type | Description |
| String | The tooltip of the ListItem. |
GetType()
Declaration
String GetType() Examples
NSMDOListItem thing;
String type = thing.GetType();
Returns
| Type | Description |
| String | The type of the ListItem. Custom field. |
SetChildItems(NSMDOListItem[])
Declaration
Void SetChildItems(NSMDOListItem[] childItems) Examples
NSMDOListItem thing;
NSMDOListItem[] childItems;
thing.SetChildItems(childItems);
Parameters
| Type | Name | Description |
| NSMDOListItem[] | childItems | The child items of the NSMDOListItem. |
Returns
| Type | Description |
| Void |
SetColorBlock(Integer)
Declaration
Void SetColorBlock(Integer colorBlock) Examples
NSMDOListItem thing;
Integer colorBlock;
thing.SetColorBlock(colorBlock);
Parameters
| Type | Name | Description |
| Integer | colorBlock | The color indicator of the ListItem color block. |
Returns
| Type | Description |
| Void |
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted) Examples
NSMDOListItem thing;
Bool deleted;
thing.SetDeleted(deleted);
Parameters
| Type | Name | Description |
| Bool | deleted | The deleted status of the ListItem. |
Returns
| Type | Description |
| Void |
SetExtraInfo(String)
Declaration
Void SetExtraInfo(String extraInfo) Examples
NSMDOListItem thing;
String extraInfo;
thing.SetExtraInfo(extraInfo);
Parameters
| Type | Name | Description |
| String | extraInfo | Extra information added to the ListItem. Could be information such as sort order etc or other meta data. Custom field. |
Returns
| Type | Description |
| Void |
SetFullName(String)
Declaration
Void SetFullName(String fullName) Examples
NSMDOListItem thing;
String fullName;
thing.SetFullName(fullName);
Parameters
| Type | Name | Description |
| String | fullName | The name of the ListItem in its context. |
Returns
| Type | Description |
| Void |
SetIconHint(String)
Declaration
Void SetIconHint(String iconHint) Examples
NSMDOListItem thing;
String iconHint;
thing.SetIconHint(iconHint);
Parameters
| Type | Name | Description |
| String | iconHint | The Icon hint of the ListItem. Custom field. |
Returns
| Type | Description |
| Void |
SetId(Integer)
Declaration
Void SetId(Integer id) Examples
NSMDOListItem 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
NSMDOListItem thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | The name of the ListItem. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSMDOListItem thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | The rank of the ListItem. |
Returns
| Type | Description |
| Void |
SetStyleHint(String)
Declaration
Void SetStyleHint(String styleHint) Examples
NSMDOListItem thing;
String styleHint;
thing.SetStyleHint(styleHint);
Parameters
| Type | Name | Description |
| String | styleHint | Style hint indicating, information such as background color etc. Custom field. |
Returns
| Type | Description |
| Void |