Application.SpellingOptions プロパティ (Excel)

アプリケーションの スペル チェック オプションを表す SpellingOptions オブジェクトを返します。

構文

SpellingOptions

expressionApplication オブジェクトを 表す変数。

次の使用例では、数字を含む単語のスペル チェックのオプションの設定を確認し、メッセージを表示します。

Sub MixedDigitCheck() 
 
 ' Determine the setting on spell checking for mixed digits. 
 If Application.SpellingOptions.IgnoreMixedDigits = True Then 
 MsgBox "The spelling options are set to ignore mixed digits." 
 Else 
 MsgBox "The spelling options are set to check for mixed digits." 
 End If 
 
End Sub

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。