View Property
Applies To
Pane object, Window object.
Description
Returns a View object that represents the view for the specified window or pane. Read-only.
See Also
SeekView property, ShowAll property, SplitSpecial property, Type property.
Example
This example switches the active window to full-screen view.
ActiveWindow.View.FullScreen = True
This example shows all nonprinting characters for panes associated with the first window in the Windows collection.
For Each myPane In Windows(1).Panes
myPane.View.ShowAll = True
Next myPane
This example sets view options for each window in the Windows collection.
For Each myWindow In Windows
With myWindow.View
.ShowTabs = True
.ShowParagraphs = True
.Type = wdNormalView
End With
Next myWindow