SpellingOptions.IgnoreMixedDigits Property

Excel Developer Reference

False instructs Microsoft Excel to check for mixed digits, True instructs Excel to ignore mixed digits when checking spelling. Read/write Boolean.

Syntax

expression.IgnoreMixedDigits

expression   A variable that represents a SpellingOptions object.

Example

In this example, Microsoft Excel determines what the setting is for the checking of spelling for mixed digits and notifies the user.

Visual Basic for Applications
  Sub SpellingOptionsCheck()
If Application.SpellingOptions.<strong>IgnoreMixedDigits</strong> = True Then
    MsgBox "Spelling options for checking mixed digits is disabled."
Else
    MsgBox "Spelling options for checking mixed digits is enabled."
End If

End Sub

See Also