Pane.View Property

Word Developer Reference

Returns a View object that represents the view for the specified pane.

Syntax

expression.View

expression   Required. A variable that represents a Pane object.

Example

This example shows all nonprinting characters for panes associated with the first window in the Windows collection.

Visual Basic for Applications
  For Each myPane In Windows(1).Panes
    myPane.View.ShowAll = True
Next myPane

See Also