ProtectedViewWindow.Document Property (Word)
Returns a Document object associated with the protected view window. Read-only.
Version Information
Version Added: Word 2010
Syntax
expression .Document
expression A variable that represents a ProtectedViewWindow object.
Remarks
A document displayed in a protected view window is not a member of the Documents collection. Instead, use the Document property to access a document that is displayed in a protected view window.
Example
The following code example displays the name of the document in the active protected view window.
Dim myDoc As Document
Set myDoc = ActiveProtectedViewWindow.Document
MsgBox myDoc.Name