Document.ReadOnly Property

Word Developer Reference

True if changes to the document cannot be saved to the original document. Read-only Boolean.

Syntax

expression.ReadOnly

expression   Required. A variable that represents a Document object.

Example

This example saves the active document if it isn't read-only.

Visual Basic for Applications
  If ActiveDocument.ReadOnly = False Then ActiveDocument.Save

See Also