title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
WorkflowTask object (Office) |
vbaof11.chm280000 |
|
|
9d17947e-f12a-2f97-7888-8d5ec9f85011 |
01/29/2019 |
medium |
Represents a single workflow task in a WorkflowTasks collection.
The following example displays the name of each workflow task in the current document and then displays the workflow task edit user interface for a specific task. It should be noted that calling the GetWorkflowTasks method involves a round-trip to the server.
Sub DisplayWorkTask()
Dim objWorkflowTasks As WorkflowTasks
Dim objWorkflowTask As WorkflowTask
Dim cnt As Integer
Set objWorkflowTasks = Document.GetWorkflowTasks()
For cnt = 1 To objWorkflowTasks.Count
Debug.Print objWorkflowTask(cnt).Name
Next
Set objWorkflowTask = objWorkflowTasks(1)
objWorkflowTask.Show
End Sub
[!includeSupport and feedback]