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