Class NSProductFamily
The built-in product family list. Used by the SuperOffice Quote Connector to categorize products.
Constructors
NSProductFamily()
Initializes a new instance of the NSProductFamily class.
Declaration
NSProductFamily Methods
GetId()
Gets the primary key (ID) for the NSProductFamily.
Declaration
Integer GetId() Examples
NSProductFamily thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | NSProductFamily Id. |
GetTooltip()
Gets the tooltip description for the NSProductFamily list item.
Declaration
String GetTooltip() Examples
NSProductFamily thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String | NSProductFamily tooltip description. |
GetValue()
Gets the name of the NSProductFamily.
Declaration
String GetValue() Examples
NSProductFamily thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String | NSProductFamily name. |
SetId(Integer)
Sets the primary key (ID) for the NSProductFamily
Declaration
Void SetId(Integer id) Examples
NSProductFamily thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |