CoAuthoring.Locks Property (Word)
Returns a CoAuthLocks collection that represents the locks in the document. Read-only.
Version Information
Version Added: Word 2010
Syntax
expression .Locks
expression An expression that returns a CoAuthoring object.
Example
The following code example displays the number of locks in the active document.
MsgBox "There are " & _
ActiveDocument.CoAuthoring.Locks.Count & _
" locks in the active document."