Class NSSelectableMDOListItem
Syntax
Constructors
NSSelectableMDOListItem()
Initializes a new instance of the NSSelectableMDOListItem class.
Declaration
Methods
GetChildItems()
Declaration
NSSelectableMDOListItem[] GetChildItems()
Returns
Examples
NSSelectableMDOListItem thing;
NSSelectableMDOListItem[] childItems = thing.GetChildItems();
GetColorBlock()
Declaration
Returns
Type |
Description |
Integer |
The color indicator of the ListItem color block.
|
Examples
NSSelectableMDOListItem thing;
Integer colorBlock = thing.GetColorBlock();
GetDeleted()
Declaration
Returns
Type |
Description |
Bool |
The deleted status of the ListItem.
|
Examples
NSSelectableMDOListItem thing;
Bool deleted = thing.GetDeleted();
Declaration
Returns
Type |
Description |
String |
Extra information added to the ListItem. Could be information such as sort order etc or other meta data. Custom field.
|
NSSelectableMDOListItem thing;
String extraInfo = thing.GetExtraInfo();
GetFullName()
Declaration
Returns
Type |
Description |
String |
The name of the ListItem in its context.
|
Examples
NSSelectableMDOListItem thing;
String fullName = thing.GetFullName();
GetHidden()
Declaration
Returns
Type |
Description |
Bool |
True if the ListItem is hidden.
|
Examples
NSSelectableMDOListItem thing;
Bool hidden = thing.GetHidden();
GetIconHint()
Declaration
Returns
Type |
Description |
String |
The Icon hint of the ListItem. Custom field.
|
Examples
NSSelectableMDOListItem thing;
String iconHint = thing.GetIconHint();
GetId()
Declaration
Returns
Type |
Description |
Integer |
The ID of the ListItem.
|
Examples
NSSelectableMDOListItem thing;
Integer id = thing.GetId();
GetLastChanged()
Declaration
DateTime GetLastChanged()
Returns
Type |
Description |
DateTime |
Time of last change.
|
Examples
NSSelectableMDOListItem thing;
DateTime lastChanged = thing.GetLastChanged();
GetName()
Declaration
Returns
Type |
Description |
String |
The name of the ListItem.
|
Examples
NSSelectableMDOListItem thing;
String name = thing.GetName();
GetRank()
Declaration
Returns
Type |
Description |
Integer |
The rank of the ListItem.
|
Examples
NSSelectableMDOListItem thing;
Integer rank = thing.GetRank();
GetSelected()
Declaration
Returns
Type |
Description |
Bool |
True if the ListItem is selected.
|
Examples
NSSelectableMDOListItem thing;
Bool selected = thing.GetSelected();
GetStyleHint()
Declaration
Returns
Type |
Description |
String |
Style hint indicating, information such as background color etc. Custom field.
|
Examples
NSSelectableMDOListItem thing;
String styleHint = thing.GetStyleHint();
Declaration
Returns
Type |
Description |
String |
The tooltip of the ListItem.
|
NSSelectableMDOListItem thing;
String toolTip = thing.GetToolTip();
GetType()
Declaration
Returns
Type |
Description |
String |
The type of the ListItem. Custom field.
|
Examples
NSSelectableMDOListItem thing;
String type = thing.GetType();
SetChildItems(NSSelectableMDOListItem[])
Declaration
Void SetChildItems(NSSelectableMDOListItem[] childItems)
Parameters
Returns
Examples
NSSelectableMDOListItem thing;
NSSelectableMDOListItem[] childItems;
thing.SetChildItems(childItems);
SetColorBlock(Integer)
Declaration
Void SetColorBlock(Integer colorBlock)
Parameters
Type |
Name |
Description |
Integer |
colorBlock |
The color indicator of the ListItem color block.
|
Returns
Examples
NSSelectableMDOListItem thing;
Integer colorBlock;
thing.SetColorBlock(colorBlock);
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted)
Parameters
Type |
Name |
Description |
Bool |
deleted |
The deleted status of the ListItem.
|
Returns
Examples
NSSelectableMDOListItem thing;
Bool deleted;
thing.SetDeleted(deleted);
Declaration
Void SetExtraInfo(String 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
NSSelectableMDOListItem thing;
String extraInfo;
thing.SetExtraInfo(extraInfo);
SetFullName(String)
Declaration
Void SetFullName(String fullName)
Parameters
Type |
Name |
Description |
String |
fullName |
The name of the ListItem in its context.
|
Returns
Examples
NSSelectableMDOListItem thing;
String fullName;
thing.SetFullName(fullName);
SetHidden(Bool)
Declaration
Void SetHidden(Bool hidden)
Parameters
Type |
Name |
Description |
Bool |
hidden |
True if the ListItem is hidden.
|
Returns
Examples
NSSelectableMDOListItem thing;
Bool hidden;
thing.SetHidden(hidden);
SetIconHint(String)
Declaration
Void SetIconHint(String iconHint)
Parameters
Type |
Name |
Description |
String |
iconHint |
The Icon hint of the ListItem. Custom field.
|
Returns
Examples
NSSelectableMDOListItem thing;
String iconHint;
thing.SetIconHint(iconHint);
SetId(Integer)
Declaration
Parameters
Type |
Name |
Description |
Integer |
id |
The ID of the ListItem.
|
Returns
Examples
NSSelectableMDOListItem thing;
Integer id;
thing.SetId(id);
SetLastChanged(DateTime)
Declaration
Void SetLastChanged(DateTime lastChanged)
Parameters
Type |
Name |
Description |
DateTime |
lastChanged |
Time of last change.
|
Returns
Examples
NSSelectableMDOListItem thing;
DateTime lastChanged;
thing.SetLastChanged(lastChanged);
SetName(String)
Declaration
Void SetName(String name)
Parameters
Type |
Name |
Description |
String |
name |
The name of the ListItem.
|
Returns
Examples
NSSelectableMDOListItem thing;
String name;
thing.SetName(name);
SetRank(Integer)
Declaration
Void SetRank(Integer rank)
Parameters
Type |
Name |
Description |
Integer |
rank |
The rank of the ListItem.
|
Returns
Examples
NSSelectableMDOListItem thing;
Integer rank;
thing.SetRank(rank);
SetSelected(Bool)
Declaration
Void SetSelected(Bool selected)
Parameters
Type |
Name |
Description |
Bool |
selected |
True if the ListItem is selected.
|
Returns
Examples
NSSelectableMDOListItem thing;
Bool selected;
thing.SetSelected(selected);
SetStyleHint(String)
Declaration
Void SetStyleHint(String styleHint)
Parameters
Type |
Name |
Description |
String |
styleHint |
Style hint indicating, information such as background color etc. Custom field.
|
Returns
Examples
NSSelectableMDOListItem thing;
String styleHint;
thing.SetStyleHint(styleHint);
Declaration
Void SetToolTip(String toolTip)
Parameters
Type |
Name |
Description |
String |
toolTip |
The tooltip of the ListItem.
|
Returns
NSSelectableMDOListItem thing;
String toolTip;
thing.SetToolTip(toolTip);
SetType(String)
Declaration
Void SetType(String type)
Parameters
Type |
Name |
Description |
String |
type |
The type of the ListItem. Custom field.
|
Returns
Examples
NSSelectableMDOListItem thing;
String type;
thing.SetType(type);