Gets a task from Pocket Outlook.
POOM objects
POOMTask objectname.GetTask ( index )
Argument |
Description |
---|---|
objectname |
The name of the POOM object |
index |
Integer for the index of the task that you want to retrieve |
POOMTask. Use the IsValid function to confirm that a valid task was returned.
A user must be logged in to a POOM object to get a task from Pocket Outlook.
The following example retrieves the first task in Pocket Outlook and displays it:
POOMTask task DateTime dt task = g_poom.GetTask(1) if IsValid(task) then
task.Display() end if