Application.TaskPanes Property

Word Developer Reference

Returns a TaskPanes collection that represents the most commonly performed tasks in Microsoft Word.

Syntax

expression.TaskPanes

expression   An expression that returns an Application object.

Example

The following example displays the task pane that contains information about formatting in a document.

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

See Also