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