Options 属性

       

返回一个 Options 对象,该对象代表 Microsoft Word 中的应用程序设置。

expression.Options

expression   必需。该表达式返回“应用于”列表中的一个对象。

示例

本示例禁用快速保存功能,然后保存活动文档。

Options.AllowFastSave = False
ActiveDocument.Save

本示例打印 Sales.doc 文档及其备注和域结果。

With Options
    .PrintFieldCodes = False
    .PrintComments = True
End With
Documents("Sales.doc").PrintOut