Options.AutoFormatPreserveStyles 屬性 (Word)
True 是表示 如果先前已套用的樣式會保留時 Word 自動設定文件或範圍的格式。 可讀寫的 Boolean。
語法
expression。 AutoFormatPreserveStyles
表達 代表 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 支援與意見反應。