Pane.View Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a View object that represents the view for the specified pane.
public:
property Microsoft::Office::Interop::Word::View ^ View { Microsoft::Office::Interop::Word::View ^ get(); };
public Microsoft.Office.Interop.Word.View View { get; }
member this.View : Microsoft.Office.Interop.Word.View
Public ReadOnly Property View As View
Property Value
Examples
This example shows all nonprinting characters for panes associated with the first window in the Windows collection.
<span class="label">For Each myPane In Windows(1).Panes
myPane.</span>
<span class="label">View</span>
<span class="label">.ShowAll = TrueNext myPane</span>