Show / Hide Table of Contents

Class NSMDOListItem

Carrier object for MDOListItem.

Syntax

Constructors

NSMDOListItem()

Initializes a new instance of the NSMDOListItem class.

Introduced or updated in version: 7

Declaration
NSMDOListItem

Methods

GetChildItems()

Introduced or updated in version: 7

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

The child items of the NSMDOListItem.

Examples
NSMDOListItem thing;
NSMDOListItem[] 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
NSMDOListItem 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
NSMDOListItem 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
NSMDOListItem 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
NSMDOListItem thing;
String fullName = thing.GetFullName();

GetIconHint()

Introduced or updated in version: 7

Declaration
String GetIconHint()
Returns
Type Description
String

The Icon hint of the ListItem. Custom field.

Examples
NSMDOListItem 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
NSMDOListItem thing;
Integer id = thing.GetId();

GetName()

Introduced or updated in version: 7

Declaration
String GetName()
Returns
Type Description
String

The name of the ListItem.

Examples
NSMDOListItem 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
NSMDOListItem thing;
Integer rank = thing.GetRank();

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
NSMDOListItem 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
NSMDOListItem 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
NSMDOListItem thing;
String type = thing.GetType();

SetChildItems(NSMDOListItem[])

Introduced or updated in version: 7

Declaration
Void SetChildItems(NSMDOListItem[] childItems)
Parameters
Type Name Description
NSMDOListItem[] childItems

The child items of the NSMDOListItem.

Returns
Type Description
Void
Examples
NSMDOListItem thing;
NSMDOListItem[] 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
NSMDOListItem 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
NSMDOListItem 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
NSMDOListItem 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
NSMDOListItem thing;
String fullName;
thing.SetFullName(fullName);

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
NSMDOListItem 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
NSMDOListItem thing;
Integer id;
thing.SetId(id);

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
NSMDOListItem 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
NSMDOListItem thing;
Integer rank;
thing.SetRank(rank);

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
NSMDOListItem 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
NSMDOListItem 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
NSMDOListItem 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