Class NSTask
Type of an appointment.
Constructors
NSTask()
Initializes a new instance of the NSTask class.
Declaration
NSTask Methods
GetId()
Gets the primary key (ID) for the Task
Declaration
Integer GetId() Examples
NSTask thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer |
GetTooltip()
Gets the tooltip description for the Task list item.
Declaration
String GetTooltip() Examples
NSTask thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String |
GetValue()
Gets the name of the Task.
Declaration
String GetValue() Examples
NSTask thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String |
SetId(Integer)
Sets the primary key (ID) for the Task
Declaration
Void SetId(Integer id) Examples
NSTask thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |