WorkflowTemplates Object

Office Developer Reference

Represents a collection of WorkflowTemplate objects.

Example

The following example displays the name of each workflow template in the current document and then displays workflow specific configuration user interface for a specific template. It should be noted that calling the GetWorkflowTemplates method involves a round-trip to the server.

Visual Basic for Applications
  Sub DisplayWorkTemplates()
Dim objWorkflowTemplates As WorkflowTemplates
Dim objWorkflowTemplate As WorkflowTemplate
Dim cnt As Integer 

Set objWorkflowTemplates = Document.GetWorkflowTemplates()

For cnt = 1 To objWorkflowTemplates.Count Debug.Print objWorkflowTemplate(cnt).Name Next

Set objWorkflowTemplate = objWorkflowTemplates(1) objWorkflowTemplate.Show

End Sub

See Also