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