Application.SpellingOptions property (Excel)
Returns a SpellingOptions object that represents the spelling options of the application.
Syntax
expression.SpellingOptions
expression A variable that represents an Application object.
Example
In this example, Microsoft Excel checks the setting on the spelling options for ignoring mixed digits, and notifies the user of its status.
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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.