Class NSTabOrder
Syntax
Constructors
NSTabOrder()
Initializes a new instance of the NSTabOrder class.
Declaration
Methods
GetAssociateId()
Declaration
Returns
Type |
Description |
Integer |
Associate who owns this tab order.
|
Examples
NSTabOrder thing;
Integer associateId = thing.GetAssociateId();
GetOrder()
Declaration
Returns
Type |
Description |
String |
The actual tab order.
|
Examples
NSTabOrder thing;
String order = thing.GetOrder();
GetTabName()
Declaration
Returns
Type |
Description |
String |
Name of tab control.
|
Examples
NSTabOrder thing;
String tabName = thing.GetTabName();
GetTabOrderId()
Declaration
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
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
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
Examples
NSTabOrder thing;
String tabName;
thing.SetTabName(tabName);
SetTabOrderId(Integer)
Declaration
Void SetTabOrderId(Integer tabOrderId)
Parameters
Type |
Name |
Description |
Integer |
tabOrderId |
Primary key.
|
Returns
Examples
NSTabOrder thing;
Integer tabOrderId;
thing.SetTabOrderId(tabOrderId);