Class NSCompetitor

Carrier object for Competitor.

Constructors

NSCompetitor()

Initializes a new instance of the NSCompetitor class.

Declaration

NSCompetitor

Methods

GetId()

Declaration

Integer GetId()

Examples

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

Returns

Type Description
Integer Gets the primary key (ID) for the NSCompetitor.

GetTooltip()

Declaration

String GetTooltip()

Examples

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

Returns

Type Description
String Gets the tooltip description for the NSCompetitor list item.

GetValue()

Declaration

String GetValue()

Examples

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

Returns

Type Description
String Gets the name of the NSCompetitor.

SetId(Integer)

Sets the primary key (ID) for the NSCompetitor.

Declaration

Void SetId(Integer id)

Examples

NSCompetitor thing;
thing.SetId(123);

Parameters

Type Name Description
Integer id

Returns

Type Description
Void

SetTooltip(String)

Sets the tooltip description for the NSCompetitor list item.

Declaration

Void SetTooltip(String tooltip)

Examples

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

Declaration

Void SetValue(String value)

Examples

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

Parameters

Type Name Description
String value

Returns

Type Description
Void