Show / Hide Table of Contents

Class NSTaskListItem

Syntax

Constructors

NSTaskListItem()

Initializes a new instance of the NSTaskListItem class.

Declaration
NSTaskListItem

Methods

GetColorIndex()

Declaration
Integer GetColorIndex()
Returns
Type Description
Integer

JAP. See ColorIndex.

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

GetDefaultVideomeetingStatus()

Declaration
Integer GetDefaultVideomeetingStatus()
Returns
Type Description
Integer

Default video-meeting status for meetings created in SuperOffice CRM. See VideoMeetingStatus

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

GetDeleted()

Declaration
Bool GetDeleted()
Returns
Type Description
Bool

If true, the Task list item is deleted.

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

GetDirection()

Declaration
Integer GetDirection()
Returns
Type Description
Integer

1 = incoming, 2 = outgoing. See TaskDirection

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

GetIntentId()

Declaration
Integer GetIntentId()
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
Bool GetIsDefaultFree()
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
Integer GetRank()
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();

GetTooltip()

Declaration
String GetTooltip()
Returns
Type Description
String

Tooltip or other description.

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

GetType()

Declaration
Integer GetType()
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
String GetValue()
Returns
Type Description
String

The list item.

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

SetColorIndex(Integer)

Declaration
Void SetColorIndex(Integer colorIndex)
Parameters
Type Name Description
Integer colorIndex

JAP. See ColorIndex.

Returns
Type Description
Void
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
Type Description
Void
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
Type Description
Void
Examples
NSTaskListItem thing;
Bool deleted;
thing.SetDeleted(deleted);

SetDirection(Integer)

Declaration
Void SetDirection(Integer direction)
Parameters
Type Name Description
Integer direction

1 = incoming, 2 = outgoing. See TaskDirection.

Returns
Type Description
Void
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
Type Description
Void
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
Type Description
Void
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
Type Description
Void
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
Type Description
Void
Examples
NSTaskListItem thing;
Bool isDefaultPublished;
thing.SetIsDefaultPublished(isDefaultPublished);

SetRank(Integer)

Declaration
Void SetRank(Integer rank)
Parameters
Type Name Description
Integer rank

Rank order.

Returns
Type Description
Void
Examples
NSTaskListItem thing;
Integer rank;
thing.SetRank(rank);

SetTaskListItemId(Integer)

Declaration
Void SetTaskListItemId(Integer taskListItemId)
Parameters
Type Name Description
Integer taskListItemId

Primary key.

Returns
Type Description
Void
Examples
NSTaskListItem thing;
Integer taskListItemId;
thing.SetTaskListItemId(taskListItemId);

SetTooltip(String)

Declaration
Void SetTooltip(String tooltip)
Parameters
Type Name Description
String tooltip

Tooltip or other description.

Returns
Type Description
Void
Examples
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

Returns
Type Description
Void
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
Type Description
Void
Examples
NSTaskListItem thing;
String value;
thing.SetValue(value);
In This Article
  • Constructors
    • NSTaskListItem()
  • Methods
    • GetColorIndex()
    • GetDefaultVideomeetingStatus()
    • GetDeleted()
    • GetDirection()
    • GetIntentId()
    • GetIsDefaultAlldayEvent()
    • GetIsDefaultFree()
    • GetIsDefaultPublished()
    • GetRank()
    • GetTaskListItemId()
    • GetTooltip()
    • GetType()
    • GetValue()
    • SetColorIndex(Integer)
    • SetDefaultVideomeetingStatus(Integer)
    • SetDeleted(Bool)
    • SetDirection(Integer)
    • SetIntentId(Integer)
    • SetIsDefaultAlldayEvent(Bool)
    • SetIsDefaultFree(Bool)
    • SetIsDefaultPublished(Bool)
    • SetRank(Integer)
    • SetTaskListItemId(Integer)
    • SetTooltip(String)
    • SetType(Integer)
    • SetValue(String)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top