WorkflowTemplate.Show Method (Office)
Displays a workflow specific configuration user interface for the specified WorkflowTemplate object.
Syntax
expression .Show
expression An expression that returns a WorkflowTemplate object.
Return Value
Integer
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.
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