Excel) (SpellingOptions 对象
代表工作表的各种拼写检查选项。
备注
使用 Application 对象的 SpellingOptions 属性可返回 SpellingOptions 对象。
返回 SpellingOptions 对象后,可以使用以下属性设置或返回各种拼写检查选项:
- ArabicModes
- DictLang
- GermanPostReform
- HebrewModes
- IgnoreCaps
- IgnoreFileNames
- IgnoreMixedDigits
- KoreanCombineAux
- KoreanProcessCompound
- KoreanUseAutoChangeList
- SuggestMainOnly
- UserDict
示例
下例使用 IgnoreCaps 属性来禁用对全部是大写字母的单词的拼写检查。 在本示例中,拼写检查程序发现的是“Testt”,而不是“TESTT”。
Sub IgnoreAllCAPS()
' Place misspelled versions of the same word in all caps and mixed case.
Range("A1").Formula = "Testt"
Range("A2").Formula = "TESTT"
With Application.SpellingOptions
.SuggestMainOnly = True
.IgnoreCaps = True
End With
' Run a spell check.
Cells.CheckSpelling
End Sub
属性
- ArabicModes
- ArabicStrictAlefHamza
- ArabicStrictFinalYaa
- ArabicStrictTaaMarboota
- BrazilReform
- DictLang
- GermanPostReform
- HebrewModes
- IgnoreCaps
- IgnoreFileNames
- IgnoreMixedDigits
- KoreanCombineAux
- KoreanProcessCompound
- KoreanUseAutoChangeList
- PortugalReform
- RussianStrictE
- SpanishModes
- SuggestMainOnly
- UserDict
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。