Class NSNavigatorCompany
Carrier object for NavigatorCompany.
Constructors
Initializes a new instance of the NSNavigatorCompany class.
Declaration
NSNavigatorCompany Methods
Gets the primary key (ID) for the NSNavigatorCompany
Declaration
Integer GetId() Examples
NSNavigatorCompany thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | NavigatorCompany ID. |
Gets the tooltip description for the NSNavigatorCompany list item.
Declaration
String GetTooltip() Examples
NSNavigatorCompany thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String | NSNavigatorCompany tooltip description. |
Gets the name of the NSNavigatorCompany.
Declaration
String GetValue() Examples
NSNavigatorCompany thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String | NavigatorCompany name. |
Sets the primary key (ID) for the NSNavigatorCompany
Declaration
Void SetId(Integer id) Examples
NSNavigatorCompany thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |