Class NSTaskListItem
Syntax
Constructors
NSTaskListItem()
Initializes a new instance of the NSTaskListItem class.
Declaration
Methods
GetColorIndex()
Declaration
Returns
Examples
NSTaskListItem thing;
Integer colorIndex = thing.GetColorIndex();
GetDefaultVideomeetingStatus()
Declaration
Integer GetDefaultVideomeetingStatus()
Returns
Examples
NSTaskListItem thing;
Integer defaultVideomeetingStatus = thing.GetDefaultVideomeetingStatus();
GetDeleted()
Declaration
Returns
Type |
Description |
Bool |
If true, the Task list item is deleted.
|
Examples
NSTaskListItem thing;
Bool deleted = thing.GetDeleted();
GetDirection()
Declaration
Returns
Examples
NSTaskListItem thing;
Integer direction = thing.GetDirection();
GetIntentId()
Declaration
Returns
Type |
Description |
Integer |
Link to the intention of this kind of task (used by SAINT).
|
Examples
NSTaskListItem thing;
Integer intentId = thing.GetIntentId();
GetIsDefaultAlldayEvent()
Declaration
Bool GetIsDefaultAlldayEvent()
Returns
Type |
Description |
Bool |
True if all day event.
|
Examples
NSTaskListItem thing;
Bool isDefaultAlldayEvent = thing.GetIsDefaultAlldayEvent();
GetIsDefaultFree()
Declaration
Returns
Type |
Description |
Bool |
True if free, false if busy.
|
Examples
NSTaskListItem thing;
Bool isDefaultFree = thing.GetIsDefaultFree();
GetIsDefaultPublished()
Declaration
Bool GetIsDefaultPublished()
Returns
Type |
Description |
Bool |
Published to external persons.
|
Examples
NSTaskListItem thing;
Bool isDefaultPublished = thing.GetIsDefaultPublished();
GetRank()
Declaration
Returns
Type |
Description |
Integer |
Rank order.
|
Examples
NSTaskListItem thing;
Integer rank = thing.GetRank();
GetTaskListItemId()
Declaration
Integer GetTaskListItemId()
Returns
Type |
Description |
Integer |
Primary key.
|
Examples
NSTaskListItem thing;
Integer taskListItemId = thing.GetTaskListItemId();
Declaration
Returns
Type |
Description |
String |
Tooltip or other description.
|
NSTaskListItem thing;
String tooltip = thing.GetTooltip();
GetType()
Declaration
Returns
Type |
Description |
Integer |
1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo; See TaskType
|
Examples
NSTaskListItem thing;
Integer type = thing.GetType();
GetValue()
Declaration
Returns
Type |
Description |
String |
The list item.
|
Examples
NSTaskListItem thing;
String value = thing.GetValue();
SetColorIndex(Integer)
Declaration
Void SetColorIndex(Integer colorIndex)
Parameters
Returns
Examples
NSTaskListItem thing;
Integer colorIndex;
thing.SetColorIndex(colorIndex);
SetDefaultVideomeetingStatus(Integer)
Declaration
Void SetDefaultVideomeetingStatus(Integer defaultVideomeetingStatus)
Parameters
Type |
Name |
Description |
Integer |
defaultVideomeetingStatus |
Default video-meeting status for meetings created in SuperOffice CRM. See VideoMeetingStatus.
|
Returns
Examples
NSTaskListItem thing;
Integer defaultVideomeetingStatus;
thing.SetDefaultVideomeetingStatus(defaultVideomeetingStatus);
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted)
Parameters
Type |
Name |
Description |
Bool |
deleted |
If true, the Task list item is deleted.
|
Returns
Examples
NSTaskListItem thing;
Bool deleted;
thing.SetDeleted(deleted);
SetDirection(Integer)
Declaration
Void SetDirection(Integer direction)
Parameters
Returns
Examples
NSTaskListItem thing;
Integer direction;
thing.SetDirection(direction);
SetIntentId(Integer)
Declaration
Void SetIntentId(Integer intentId)
Parameters
Type |
Name |
Description |
Integer |
intentId |
Link to the intention of this kind of task (used by SAINT).
|
Returns
Examples
NSTaskListItem thing;
Integer intentId;
thing.SetIntentId(intentId);
SetIsDefaultAlldayEvent(Bool)
Declaration
Void SetIsDefaultAlldayEvent(Bool isDefaultAlldayEvent)
Parameters
Type |
Name |
Description |
Bool |
isDefaultAlldayEvent |
True if all day event.
|
Returns
Examples
NSTaskListItem thing;
Bool isDefaultAlldayEvent;
thing.SetIsDefaultAlldayEvent(isDefaultAlldayEvent);
SetIsDefaultFree(Bool)
Declaration
Void SetIsDefaultFree(Bool isDefaultFree)
Parameters
Type |
Name |
Description |
Bool |
isDefaultFree |
True if free, false if busy.
|
Returns
Examples
NSTaskListItem thing;
Bool isDefaultFree;
thing.SetIsDefaultFree(isDefaultFree);
SetIsDefaultPublished(Bool)
Declaration
Void SetIsDefaultPublished(Bool isDefaultPublished)
Parameters
Type |
Name |
Description |
Bool |
isDefaultPublished |
Published to external persons.
|
Returns
Examples
NSTaskListItem thing;
Bool isDefaultPublished;
thing.SetIsDefaultPublished(isDefaultPublished);
SetRank(Integer)
Declaration
Void SetRank(Integer rank)
Parameters
Type |
Name |
Description |
Integer |
rank |
Rank order.
|
Returns
Examples
NSTaskListItem thing;
Integer rank;
thing.SetRank(rank);
SetTaskListItemId(Integer)
Declaration
Void SetTaskListItemId(Integer taskListItemId)
Parameters
Type |
Name |
Description |
Integer |
taskListItemId |
Primary key.
|
Returns
Examples
NSTaskListItem thing;
Integer taskListItemId;
thing.SetTaskListItemId(taskListItemId);
Declaration
Void SetTooltip(String tooltip)
Parameters
Type |
Name |
Description |
String |
tooltip |
Tooltip or other description.
|
Returns
NSTaskListItem thing;
String tooltip;
thing.SetTooltip(tooltip);
SetType(Integer)
Declaration
Void SetType(Integer type)
Parameters
Type |
Name |
Description |
Integer |
type |
1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo; See TaskType
|
Examples
NSTaskListItem thing;
Integer type;
thing.SetType(type);
SetValue(String)
Declaration
Void SetValue(String value)
Parameters
Type |
Name |
Description |
String |
value |
The list item.
|
Returns
Examples
NSTaskListItem thing;
String value;
thing.SetValue(value);