ProtectedViewWindow.Document property (Word)

Returns a Document object associated with the Protected View window. Read-only.

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

See also

ProtectedViewWindow Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.