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