Class NSTabOrder

Constructors

NSTabOrder()

Initializes a new instance of the NSTabOrder class.

Declaration

NSTabOrder

Methods

GetAssociateId()

Declaration

Integer GetAssociateId()

Examples

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

Returns

Type Description
Integer Associate who owns this tab order.

GetOrder()

Declaration

String GetOrder()

Examples

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

Returns

Type Description
String The actual tab order.

GetTabName()

Declaration

String GetTabName()

Examples

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

Returns

Type Description
String Name of tab control.

GetTabOrderId()

Declaration

Integer GetTabOrderId()

Examples

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

Returns

Type Description
Integer Primary key.

SetAssociateId(Integer)

Declaration

Void SetAssociateId(Integer associateId)

Examples

NSTabOrder thing;
Integer associateId;
thing.SetAssociateId(associateId);

Parameters

Type Name Description
Integer associateId Associate who owns this tab order.

Returns

Type Description
Void

SetOrder(String)

Declaration

Void SetOrder(String order)

Examples

NSTabOrder thing;
String order;
thing.SetOrder(order);

Parameters

Type Name Description
String order The actual tab order.

Returns

Type Description
Void

SetTabName(String)

Declaration

Void SetTabName(String tabName)

Examples

NSTabOrder thing;
String tabName;
thing.SetTabName(tabName);

Parameters

Type Name Description
String tabName Name of tab control.

Returns

Type Description
Void

SetTabOrderId(Integer)

Declaration

Void SetTabOrderId(Integer tabOrderId)

Examples

NSTabOrder thing;
Integer tabOrderId;
thing.SetTabOrderId(tabOrderId);

Parameters

Type Name Description
Integer tabOrderId Primary key.

Returns

Type Description
Void