Share via


TaskPanes Property

TaskPanes Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

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

expression.TaskPanes

expression   Required. An expression that returns an Application object.

Example

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

  Sub showFormatting()
    Application.TaskPanes.Item(wdTaskPaneFormatting).Visible = True
End Sub