ワークシートのさまざまなスペル チェック オプションを表します。
注釈
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 のサポートおよびフィードバックを参照してください。