Show / Hide Table of Contents

Class NSTabOrder

Syntax

Constructors

NSTabOrder()

Initializes a new instance of the NSTabOrder class.

Declaration
NSTabOrder

Methods

GetAssociateId()

Declaration
Integer GetAssociateId()
Returns
Type Description
Integer

Associate who owns this tab order.

Examples
NSTabOrder thing;
Integer associateId = thing.GetAssociateId();

GetOrder()

Declaration
String GetOrder()
Returns
Type Description
String

The actual tab order.

Examples
NSTabOrder thing;
String order = thing.GetOrder();

GetTabName()

Declaration
String GetTabName()
Returns
Type Description
String

Name of tab control.

Examples
NSTabOrder thing;
String tabName = thing.GetTabName();

GetTabOrderId()

Declaration
Integer GetTabOrderId()
Returns
Type Description
Integer

Primary key.

Examples
NSTabOrder thing;
Integer tabOrderId = thing.GetTabOrderId();

SetAssociateId(Integer)

Declaration
Void SetAssociateId(Integer associateId)
Parameters
Type Name Description
Integer associateId

Associate who owns this tab order.

Returns
Type Description
Void
Examples
NSTabOrder thing;
Integer associateId;
thing.SetAssociateId(associateId);

SetOrder(String)

Declaration
Void SetOrder(String order)
Parameters
Type Name Description
String order

The actual tab order.

Returns
Type Description
Void
Examples
NSTabOrder thing;
String order;
thing.SetOrder(order);

SetTabName(String)

Declaration
Void SetTabName(String tabName)
Parameters
Type Name Description
String tabName

Name of tab control.

Returns
Type Description
Void
Examples
NSTabOrder thing;
String tabName;
thing.SetTabName(tabName);

SetTabOrderId(Integer)

Declaration
Void SetTabOrderId(Integer tabOrderId)
Parameters
Type Name Description
Integer tabOrderId

Primary key.

Returns
Type Description
Void
Examples
NSTabOrder thing;
Integer tabOrderId;
thing.SetTabOrderId(tabOrderId);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top