Partager via


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

Concepts

Subdocument Object

Subdocument Object Members