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

SetTooltip(String)

Sets the tooltip description for the NSProductFamily list item.

Declaration

Void SetTooltip(String tooltip)

Examples

NSProductFamily thing;
String descr = "something new";
thing.SetTooltip(descr);

Parameters

Type Name Description
String tooltip

Returns

Type Description
Void

SetValue(String)

Sets the name of the NSProductFamily item.

Declaration

Void SetValue(String value)

Examples

NSProductFamily thing;
thing.SetValue("frotz");

Parameters

Type Name Description
String value

Returns

Type Description
Void