TaskPanes Collection

Word Developer Reference

A collection of TaskPane objects that contains commonly performed tasks in Microsoft Word.

Remarks

Use the TaskPanes property to return the TaskPanes collection. Use the Item method with a WdTaskPanes constant to refer to a specific task pane. The example below displays the formatting task pane.

Visual Basic for Applications
  Sub FormattingPane()
    Application.TaskPanes(wdTaskPaneFormatting).Visible = True
End Sub

See Also