Word) (OtherCorrectionsExceptions 物件
OtherCorrectionsException物件的集合,代表 Microsoft Word 不會自動校正的單字清單。
註解
此清單會對應到 [自動校正例外規則] 對話方塊中 [其他更正] 索引標籤上的自動校正例外規則清單。
使用 OtherCorrectionsExceptions 屬性可傳回 OtherCorrectionsExceptions 集合。 下列範例會顯示此集合中的項目。
For Each aCap In AutoCorrect.OtherCorrectionsExceptions
MsgBox aCap.Name
Next aCap
如果 OtherCorrectionsAutoAdd 屬性的值為 True,則會自動將單字新增至自動校正例外狀況清單。 使用 Add 方法可將專案新增至 OtherCorrectionsExceptions 集合。 在下列範例中,會將 "TipTop" 新增至 [自動校正] 例外清單。
AutoCorrect.OtherCorrectionsExceptions.Add Name:="TipTop"
使用 OtherCorrectionsExceptions (Index) ,其中 Index 是名稱或索引編號,可傳回單一 OtherCorrectionsException 物件。 下列範例會從自動校正例外規則清單中刪除 "WTop"。
AutoCorrect.OtherCorrectionsExceptions("WTop").Delete
索引編號是表示 [自動校正] 例外規則在 OtherCorrectionsExceptions 集合中的位置。 下列範例會顯示 OtherCorrectionsExceptions 集合中第一個項目的名稱。
MsgBox AutoCorrect.OtherCorrectionsExceptions(1).Name
請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。