Class NSProjectStatus

Carrier object for ProjectStatus.

Constructors

NSProjectStatus()

Initializes a new instance of the NSProjectStatus class.

Declaration

NSProjectStatus

Methods

GetId()

Gets the primary key (ID) for the NSProjectStatus.

Declaration

Integer GetId()

Examples

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

Returns

Type Description
Integer NSProjectStatus Id.

GetTooltip()

Gets the tooltip description for the NSProjectStatus list item.

Declaration

String GetTooltip()

Examples

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

Returns

Type Description
String NSProjectStatus tooltip description.

GetValue()

Gets the name of the NSProjectStatus.

Declaration

String GetValue()

Examples

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

Returns

Type Description
String NSProjectStatus name.

SetId(Integer)

Sets the primary key (ID) for the NSProjectStatus

Declaration

Void SetId(Integer id)

Examples

NSProjectStatus thing;
thing.SetId(123);

Parameters

Type Name Description
Integer id

Returns

Type Description
Void

SetTooltip(String)

Sets the tooltip description for the NSProjectStatus list item.

Declaration

Void SetTooltip(String tooltip)

Examples

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

Declaration

Void SetValue(String value)

Examples

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

Parameters

Type Name Description
String value

Returns

Type Description
Void