Task property: TaskList class
Description
This property returns all of the tasks in the task list as an array of task objects.
This property is read-only.
Example
For &I = 1 to &MyTaskList.Total
&MyTask = &MyTaskList[&I];
/* do work on every task in list */
End-For;