|
|
|
|
|
- Overview
- The different variables of the Task structure are as follows
The Task structure is a preset structure of WLanguage (no declaration is required). This structure is used to: - create or modify a task.
- retrieve the content of a task.
The different variables of the Task structure are as follows The structure contains the following members: | | mTask.AutoReminder | Boolean. Indicates whether an automatic reminder must be done for the task. This reminder will appear on <mTask.ReminderDate>. | mTask.Category | Character string. Set of keywords separated by a semicolon and used to define the categories linked to the task. | mTask.Deadline | DateTime. Due date and time of the task. | mTask.EndDate | Date. End date of the task. | mTask.ID | Character string. Unique identifier of the task. | mTask.Importance | Integer constant. Level of importance for the task:- taskImportanceLow
- taskImportanceHigh
- taskImportanceUndefined
- taskImportanceMedium
| mTask.NbParticipant | Integer. Number of participants to the task. | mTask.NbParticipantBcc | Integer. Number of hidden and invisible participants to the task. | mTask.NbParticipantCc | Integer. Number of hidden participants to the task. | mTask.Notes | Character string. Notes about the task. | mTask.Out | Boolean. Indicates whether there is a current task. | mTask.Participant | Array of character strings. Name of the participants to the task.The following syntax enables you to access the different participants of the task: mTask.Participant[<Participant Num>] Where <Participant num> corresponds to the number of the requested participant. The number of participants to the task is returned by the mTask.NbParticipant variable. | mTask.ParticipantBcc | Array of character strings. Name of the hidden and invisible participants to the task. The following syntax enables you to access the different hidden and invisible participants of the task: mTask.ParticipantBcc[<Participant Num>] Where <Participant num> corresponds to the number of the requested hidden and invisible participant. The number of hidden and invisible participants to the task is returned by the mTask.NbParticipantBcc variable. | mTask.ParticipantCc | Array of character strings. Name of the hidden participants to the task. The following syntax enables you to access the different hidden participants of the task: mTask.ParticipantCc[<Participant Num>] Where <Participant num> corresponds to the number of the requested hidden participant. The number of hidden participants to the task is returned by the mTask.NbParticipantCc variable. | mTask.ReminderDate | DateTime. Date and time when the task reminder will automatically appear. This variable is taken into account only if an automatic reminder must be done (mTask.AutoReminder). | mTask.Repeat | Boolean. Indicates whether the task is a recurring task. | mTask.StartDate | Date. Start date of task. | mTask.Status | Integer constant. Status of the task:- taskStateCanceled
- taskStatePaused
- taskStateInProgress
- taskStateLate
- taskStateNotStarted
- taskStateCompleted
| mTask.Subject | Character string. Subject of the task. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|