Class NSNavigatorCompany

Carrier object for NavigatorCompany.

Constructors

NSNavigatorCompany()

Initializes a new instance of the NSNavigatorCompany class.

Declaration

NSNavigatorCompany

Methods

GetId()

Gets the primary key (ID) for the NSNavigatorCompany

Declaration

Integer GetId()

Examples

NSNavigatorCompany thing;
Integer id = thing.GetId();

Returns

Type Description
Integer NavigatorCompany ID.

GetTooltip()

Gets the tooltip description for the NSNavigatorCompany list item.

Declaration

String GetTooltip()

Examples

NSNavigatorCompany thing;
String descr = thing.GetTooltip();

Returns

Type Description
String NSNavigatorCompany tooltip description.

GetValue()

Gets the name of the NSNavigatorCompany.

Declaration

String GetValue()

Examples

NSNavigatorCompany thing;
String name = thing.GetValue();

Returns

Type Description
String NavigatorCompany name.

SetId(Integer)

Sets the primary key (ID) for the NSNavigatorCompany

Declaration

Void SetId(Integer id)

Examples

NSNavigatorCompany thing;
thing.SetId(123);

Parameters

Type Name Description
Integer id

Returns

Type Description
Void

SetTooltip(String)

Sets the tooltip description for the NSNavigatorCompany list item.

Declaration

Void SetTooltip(String tooltip)

Examples

NSNavigatorCompany 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 NSNavigatorCompany item.

Declaration

Void SetValue(String value)

Examples

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

Parameters

Type Name Description
String value

Returns

Type Description
Void