View.Type Property
Returns or sets the view type.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Default Property Type As WdViewType
Get
Set
'Usage
Dim instance As View
Dim value As WdViewType
value = instance
instance = value
WdViewType this { get; set; }
Property Value
Type: Microsoft.Office.Interop.Word.WdViewType
Remarks
WdViewType can be one of these WdViewType constants:
wdMasterView
wdOutlineView
wdPrintView
wdNormalView
wdPrintPreview
wdWebView
wdReadingView
The Type property returns wdMasterView for all documents where the current view is an outline or a master document. The current view will never return wdOutlineView unless explicitly set first in code.
To check whether the current document is an outline, use the Type property and the Subdocuments collection's Count property. If the Type property returns either wdOutlineView or wdMasterView and the Count property returns zero, the document is an outline.