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 |