Show / Hide Table of Contents

Class NSSelectableMDOListItem

Syntax

Constructors

NSSelectableMDOListItem()

Initializes a new instance of the NSSelectableMDOListItem class.

Introduced or updated in version: 7

Declaration
NSSelectableMDOListItem

Methods

GetChildItems()

Introduced or updated in version: 7

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

The child items of the NSSelectableMDOListItem.

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

GetColorBlock()

Introduced or updated in version: 7

Declaration
Integer GetColorBlock()
Returns
Type Description
Integer

The color indicator of the ListItem color block.

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

GetDeleted()

Introduced or updated in version: 7

Declaration
Bool GetDeleted()
Returns
Type Description
Bool

The deleted status of the ListItem.

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

GetExtraInfo()

Introduced or updated in version: 7

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()

Introduced or updated in version: 8.2

Declaration
String GetFullName()
Returns
Type Description
String

The name of the ListItem in its context.

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

GetHidden()

Introduced or updated in version: 7

Declaration
Bool GetHidden()
Returns
Type Description
Bool

True if the ListItem is hidden.

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

GetIconHint()

Introduced or updated in version: 7

Declaration
String GetIconHint()
Returns
Type Description
String

The Icon hint of the ListItem. Custom field.

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

GetId()

Introduced or updated in version: 7

Declaration
Integer GetId()
Returns
Type Description
Integer

The ID of the ListItem.

Examples
NSSelectableMDOListItem thing;
Integer id = thing.GetId();

GetLastChanged()

Introduced or updated in version: 7

Declaration
DateTime GetLastChanged()
Returns
Type Description
DateTime

Time of last change.

Examples
NSSelectableMDOListItem thing;
DateTime lastChanged = thing.GetLastChanged();

GetName()

Introduced or updated in version: 7

Declaration
String GetName()
Returns
Type Description
String

The name of the ListItem.

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

GetRank()

Introduced or updated in version: 7

Declaration
Integer GetRank()
Returns
Type Description
Integer

The rank of the ListItem.

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

GetSelected()

Introduced or updated in version: 7

Declaration
Bool GetSelected()
Returns
Type Description
Bool

True if the ListItem is selected.

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

GetStyleHint()

Introduced or updated in version: 7

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()

Introduced or updated in version: 7

Declaration
String GetToolTip()
Returns
Type Description
String

The tooltip of the ListItem.

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

GetType()

Introduced or updated in version: 7

Declaration
String GetType()
Returns
Type Description
String

The type of the ListItem. Custom field.

Examples
NSSelectableMDOListItem thing;
String type = thing.GetType();

SetChildItems(NSSelectableMDOListItem[])

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 8.2

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top