Pane.View Property
Returns a View object that represents the view for the specified pane.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
ReadOnly Property View As View
Get
'Usage
Dim instance As Pane
Dim value As View
value = instance.View
View View { get; }
Property Value
Type: Microsoft.Office.Interop.Word.View
Examples
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 = TrueNext myPane