语法
表达式.ReadOnly
表达式 必选。一个代表 Document 对象的变量。
示例
本示例在活动文档不是只读文档时保存该文档。
if(ActiveDocument.ReadOnly == false) { ActiveDocument.Save() }