Class NSCredited

Carrier object for Credited.

Constructors

NSCredited()

Initializes a new instance of the NSCredited class.

Declaration

NSCredited

Methods

GetId()

Gets the primary key (ID) for the NSCredited

Declaration

Integer GetId()

Examples

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

Returns

Type Description
Integer

GetTooltip()

Gets the tooltip description for the NSCredited list item.

Declaration

String GetTooltip()

Examples

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

Returns

Type Description
String

GetValue()

Gets the name of the NSCredited.

Declaration

String GetValue()

Examples

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

Returns

Type Description
String

SetId(Integer)

Sets the primary key (ID) for the NSCredited

Declaration

Void SetId(Integer id)

Examples

NSCredited thing;
thing.SetId(123);

Parameters

Type Name Description
Integer id

Returns

Type Description
Void

SetTooltip(String)

Sets the tooltip description for the NSCredited list item.

Declaration

Void SetTooltip(String tooltip)

Examples

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

Declaration

Void SetValue(String value)

Examples

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

Parameters

Type Name Description
String value

Returns

Type Description
Void