Class NSProjectType

Carrier object for ProjectType.

Constructors

NSProjectType()

Initializes a new instance of the NSProjectType class.

Declaration

NSProjectType

Methods

GetId()

Gets the primary key (ID) for the NSProjectType.

Declaration

Integer GetId()

Examples

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

Returns

Type Description
Integer NSProjectType Id.

GetTooltip()

Gets the tooltip description for the NSProjectType list item.

Declaration

String GetTooltip()

Examples

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

Returns

Type Description
String NSProjectType tooltip description.

GetValue()

Gets the name of the NSProjectType.

Declaration

String GetValue()

Examples

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

Returns

Type Description
String NSProjectType name.

SetId(Integer)

Sets the primary key (ID) for the NSProjectType

Declaration

Void SetId(Integer id)

Examples

NSProjectType thing;
thing.SetId(123);

Parameters

Type Name Description
Integer id

Returns

Type Description
Void

SetTooltip(String)

Sets the tooltip description for the NSProjectType list item.

Declaration

Void SetTooltip(String tooltip)

Examples

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

Declaration

Void SetValue(String value)

Examples

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

Parameters

Type Name Description
String value

Returns

Type Description
Void