次の方法で共有


Subdocument.Locked Property

Word Developer Reference

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.

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

See Also