Class NSTaskListItem

Constructors

NSTaskListItem()

Initializes a new instance of the NSTaskListItem class.

Declaration

NSTaskListItem

Methods

GetColorIndex()

Declaration

Integer GetColorIndex()

Examples

NSTaskListItem thing;
Integer colorIndex = thing.GetColorIndex();

Returns

Type Description
Integer JAP. See <xref href="CRMScript.NetServer.ColorIndex" data-throw-if-not-resolved="false"></xref>.

GetDefaultVideomeetingStatus()

Declaration

Integer GetDefaultVideomeetingStatus()

Examples

NSTaskListItem thing;
Integer defaultVideomeetingStatus = thing.GetDefaultVideomeetingStatus();

Returns

Type Description
Integer Default video-meeting status for meetings created in SuperOffice CRM. See <xref href="CRMScript.NetServer.VideoMeetingStatus" data-throw-if-not-resolved="false"></xref>

GetDeleted()

Declaration

Bool GetDeleted()

Examples

NSTaskListItem thing;
Bool deleted = thing.GetDeleted();

Returns

Type Description
Bool If true, the Task list item is deleted.

GetDirection()

Declaration

Integer GetDirection()

Examples

NSTaskListItem thing;
Integer direction = thing.GetDirection();

Returns

Type Description
Integer 1 = incoming, 2 = outgoing. See <xref href="CRMScript.NetServer.TaskDirection" data-throw-if-not-resolved="false"></xref>

GetIntentId()

Declaration

Integer GetIntentId()

Examples

NSTaskListItem thing;
Integer intentId = thing.GetIntentId();

Returns

Type Description
Integer Link to the intention of this kind of task (used by SAINT).

GetIsDefaultAlldayEvent()

Declaration

Bool GetIsDefaultAlldayEvent()

Examples

NSTaskListItem thing;
Bool isDefaultAlldayEvent = thing.GetIsDefaultAlldayEvent();

Returns

Type Description
Bool True if all day event.

GetIsDefaultFree()

Declaration

Bool GetIsDefaultFree()

Examples

NSTaskListItem thing;
Bool isDefaultFree = thing.GetIsDefaultFree();

Returns

Type Description
Bool True if free, false if busy.

GetIsDefaultPublished()

Declaration

Bool GetIsDefaultPublished()

Examples

NSTaskListItem thing;
Bool isDefaultPublished = thing.GetIsDefaultPublished();

Returns

Type Description
Bool Published to external persons.

GetRank()

Declaration

Integer GetRank()

Examples

NSTaskListItem thing;
Integer rank = thing.GetRank();

Returns

Type Description
Integer Rank order.

GetTaskListItemId()

Declaration

Integer GetTaskListItemId()

Examples

NSTaskListItem thing;
Integer taskListItemId = thing.GetTaskListItemId();

Returns

Type Description
Integer Primary key.

GetTooltip()

Declaration

String GetTooltip()

Examples

NSTaskListItem thing;
String tooltip = thing.GetTooltip();

Returns

Type Description
String Tooltip or other description.

GetType()

Declaration

Integer GetType()

Examples

NSTaskListItem thing;
Integer type = thing.GetType();

Returns

Type Description
Integer 1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo; See <xref href="CRMScript.NetServer.TaskType" data-throw-if-not-resolved="false"></xref>

GetValue()

Declaration

String GetValue()

Examples

NSTaskListItem thing;
String value = thing.GetValue();

Returns

Type Description
String The list item.

SetColorIndex(Integer)

Declaration

Void SetColorIndex(Integer colorIndex)

Examples

NSTaskListItem thing;
Integer colorIndex;
thing.SetColorIndex(colorIndex);

Parameters

Type Name Description
Integer colorIndex JAP. See <xref href="CRMScript.NetServer.ColorIndex" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetDefaultVideomeetingStatus(Integer)

Declaration

Void SetDefaultVideomeetingStatus(Integer defaultVideomeetingStatus)

Examples

NSTaskListItem thing;
Integer defaultVideomeetingStatus;
thing.SetDefaultVideomeetingStatus(defaultVideomeetingStatus);

Parameters

Type Name Description
Integer defaultVideomeetingStatus Default video-meeting status for meetings created in SuperOffice CRM. See <xref href="CRMScript.NetServer.VideoMeetingStatus" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetDeleted(Bool)

Declaration

Void SetDeleted(Bool deleted)

Examples

NSTaskListItem thing;
Bool deleted;
thing.SetDeleted(deleted);

Parameters

Type Name Description
Bool deleted If true, the Task list item is deleted.

Returns

Type Description
Void

SetDirection(Integer)

Declaration

Void SetDirection(Integer direction)

Examples

NSTaskListItem thing;
Integer direction;
thing.SetDirection(direction);

Parameters

Type Name Description
Integer direction 1 = incoming, 2 = outgoing. See <xref href="CRMScript.NetServer.TaskDirection" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetIntentId(Integer)

Declaration

Void SetIntentId(Integer intentId)

Examples

NSTaskListItem thing;
Integer intentId;
thing.SetIntentId(intentId);

Parameters

Type Name Description
Integer intentId Link to the intention of this kind of task (used by SAINT).

Returns

Type Description
Void

SetIsDefaultAlldayEvent(Bool)

Declaration

Void SetIsDefaultAlldayEvent(Bool isDefaultAlldayEvent)

Examples

NSTaskListItem thing;
Bool isDefaultAlldayEvent;
thing.SetIsDefaultAlldayEvent(isDefaultAlldayEvent);

Parameters

Type Name Description
Bool isDefaultAlldayEvent True if all day event.

Returns

Type Description
Void

SetIsDefaultFree(Bool)

Declaration

Void SetIsDefaultFree(Bool isDefaultFree)

Examples

NSTaskListItem thing;
Bool isDefaultFree;
thing.SetIsDefaultFree(isDefaultFree);

Parameters

Type Name Description
Bool isDefaultFree True if free, false if busy.

Returns

Type Description
Void

SetIsDefaultPublished(Bool)

Declaration

Void SetIsDefaultPublished(Bool isDefaultPublished)

Examples

NSTaskListItem thing;
Bool isDefaultPublished;
thing.SetIsDefaultPublished(isDefaultPublished);

Parameters

Type Name Description
Bool isDefaultPublished Published to external persons.

Returns

Type Description
Void

SetRank(Integer)

Declaration

Void SetRank(Integer rank)

Examples

NSTaskListItem thing;
Integer rank;
thing.SetRank(rank);

Parameters

Type Name Description
Integer rank Rank order.

Returns

Type Description
Void

SetTaskListItemId(Integer)

Declaration

Void SetTaskListItemId(Integer taskListItemId)

Examples

NSTaskListItem thing;
Integer taskListItemId;
thing.SetTaskListItemId(taskListItemId);

Parameters

Type Name Description
Integer taskListItemId Primary key.

Returns

Type Description
Void

SetTooltip(String)

Declaration

Void SetTooltip(String tooltip)

Examples

NSTaskListItem thing;
String tooltip;
thing.SetTooltip(tooltip);

Parameters

Type Name Description
String tooltip Tooltip or other description.

Returns

Type Description
Void

SetType(Integer)

Declaration

Void SetType(Integer type)

Examples

NSTaskListItem thing;
Integer type;
thing.SetType(type);

Parameters

Type Name Description
Integer type 1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo; See <xref href="CRMScript.NetServer.TaskType" data-throw-if-not-resolved="false"></xref>

Returns

Type Description
Void

SetValue(String)

Declaration

Void SetValue(String value)

Examples

NSTaskListItem thing;
String value;
thing.SetValue(value);

Parameters

Type Name Description
String value The list item.

Returns

Type Description
Void