Show / Hide Table of Contents

Class NSSelectableMDOListItem

Syntax

Constructors

NSSelectableMDOListItem()

Initializes a new instance of the NSSelectableMDOListItem class.

Declaration
NSSelectableMDOListItem

Methods

GetChildItems()

Declaration
NSSelectableMDOListItem[] GetChildItems()
Returns
Type Description
NSSelectableMDOListItem[]

The child items of the NSSelectableMDOListItem.

Examples
NSSelectableMDOListItem thing;
NSSelectableMDOListItem[] childItems = thing.GetChildItems();

GetColorBlock()

Declaration
Integer GetColorBlock()
Returns
Type Description
Integer

The color indicator of the ListItem color block.

Examples
NSSelectableMDOListItem thing;
Integer colorBlock = thing.GetColorBlock();

GetDeleted()

Declaration
Bool GetDeleted()
Returns
Type Description
Bool

The deleted status of the ListItem.

Examples
NSSelectableMDOListItem thing;
Bool deleted = thing.GetDeleted();

GetExtraInfo()

Declaration
String 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.

Examples
NSSelectableMDOListItem thing;
String extraInfo = thing.GetExtraInfo();

GetFullName()

Declaration
String GetFullName()
Returns
Type Description
String

The name of the ListItem in its context.

Examples
NSSelectableMDOListItem thing;
String fullName = thing.GetFullName();

GetHidden()

Declaration
Bool GetHidden()
Returns
Type Description
Bool

True if the ListItem is hidden.

Examples
NSSelectableMDOListItem thing;
Bool hidden = thing.GetHidden();

GetIconHint()

Declaration
String GetIconHint()
Returns
Type Description
String

The Icon hint of the ListItem. Custom field.

Examples
NSSelectableMDOListItem thing;
String iconHint = thing.GetIconHint();

GetId()

Declaration
Integer GetId()
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
String GetName()
Returns
Type Description
String

The name of the ListItem.

Examples
NSSelectableMDOListItem thing;
String name = thing.GetName();

GetRank()

Declaration
Integer GetRank()
Returns
Type Description
Integer

The rank of the ListItem.

Examples
NSSelectableMDOListItem thing;
Integer rank = thing.GetRank();

GetSelected()

Declaration
Bool GetSelected()
Returns
Type Description
Bool

True if the ListItem is selected.

Examples
NSSelectableMDOListItem thing;
Bool selected = thing.GetSelected();

GetStyleHint()

Declaration
String GetStyleHint()
Returns
Type Description
String

Style hint indicating, information such as background color etc. Custom field.

Examples
NSSelectableMDOListItem thing;
String styleHint = thing.GetStyleHint();

GetToolTip()

Declaration
String GetToolTip()
Returns
Type Description
String

The tooltip of the ListItem.

Examples
NSSelectableMDOListItem thing;
String toolTip = thing.GetToolTip();

GetType()

Declaration
String GetType()
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
Type Name Description
NSSelectableMDOListItem[] childItems

The child items of the NSSelectableMDOListItem.

Returns
Type Description
Void
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
Type Description
Void
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
Type Description
Void
Examples
NSSelectableMDOListItem thing;
Bool deleted;
thing.SetDeleted(deleted);

SetExtraInfo(String)

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
Type Description
Void
Examples
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
Type Description
Void
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
Type Description
Void
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
Type Description
Void
Examples
NSSelectableMDOListItem thing;
String iconHint;
thing.SetIconHint(iconHint);

SetId(Integer)

Declaration
Void SetId(Integer id)
Parameters
Type Name Description
Integer id

The ID of the ListItem.

Returns
Type Description
Void
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
Type Description
Void
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
Type Description
Void
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
Type Description
Void
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
Type Description
Void
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
Type Description
Void
Examples
NSSelectableMDOListItem thing;
String styleHint;
thing.SetStyleHint(styleHint);

SetToolTip(String)

Declaration
Void SetToolTip(String toolTip)
Parameters
Type Name Description
String toolTip

The tooltip of the ListItem.

Returns
Type Description
Void
Examples
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
Type Description
Void
Examples
NSSelectableMDOListItem thing;
String type;
thing.SetType(type);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top