Subdocument.Locked property (Word)

True if a subdocument in a master document is locked. Read/write Boolean.

Syntax

expression.Locked

expression Required. A variable that represents a 'Subdocument' object.

Example

This example checks the first subdocument in the specified master document and sets the master document to allow only comments if the subdocument is locked.

If ActiveDocument.Subdocuments(1).Locked = True Then 
 ActiveDocument.Protect Type:=wdAllowOnlyComments 
End If

See also

Subdocument 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.