Options.AutoFormatPreserveStyles 属性 (Word)

当 Word 自动设置文档或区域格式时,将保留 如此 如果以前所用的样式。 读/写 Boolean

语法

expressionAutoFormatPreserveStyles

表达 一个代表 Options 对象的变量。

示例

本示例将 Word 设置为保留现有样式,并在自动设置格式时使用样式设置标题、列表和其他段落的格式。 然后,Word 会自动设置当前选定内容的格式。

With Options 
 .AutoFormatPreserveStyles = True 
 .AutoFormatApplyHeadings = True 
 .AutoFormatApplyLists = True 
 .AutoFormatApplyOtherParas = True 
End With 
Selection.Range.AutoFormat

本示例返回“工具”菜单的“自动更正”对话框中“自动套用格式”选项卡上“样式”选项的状态。

Dim blnAutoFormat as Boolean 
 
blnAutoFormat = Options.AutoFormatPreserveStyles

另请参阅

选项对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。