Word) (Application.Options 属性
返回一个表示在 Microsoft Word 的应用程序设置的 选项 对象。
语法
expression。 Options
expression:表示 Application 对象的变量。
示例
以下示例禁用快速保存功能,然后保存活动文档。
Options.AllowFastSave = False
ActiveDocument.Save
本示例打印 Sales.doc 文档及其批注和域结果。
With Options
.PrintFieldCodes = False
.PrintComments = True
End With
Documents("Sales.doc").PrintOut
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。