Class NSPriority

Carrier object for Priority

Constructors

NSPriority()

Initializes a new instance of the NSPriority class.

Declaration

NSPriority

Methods

GetId()

Gets the primary key (ID) for the Priority

Declaration

Integer GetId()

Examples

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

Returns

Type Description
Integer

GetTooltip()

Gets the tooltip description for the Priority list item.

Declaration

String GetTooltip()

Examples

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

Returns

Type Description
String

GetValue()

Gets the name of the Priority.

Declaration

String GetValue()

Examples

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

Returns

Type Description
String

SetId(Integer)

Sets the primary key (ID) for the Priority

Declaration

Void SetId(Integer id)

Examples

NSPriority thing;
thing.SetId(123);

Parameters

Type Name Description
Integer id

Returns

Type Description
Void

SetTooltip(String)

Sets the tooltip description for the Priority list item.

Declaration

Void SetTooltip(String tooltip)

Examples

NSPriority 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 Priority item.

Declaration

Void SetValue(String value)

Examples

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

Parameters

Type Name Description
String value

Returns

Type Description
Void