Options.IgnoreMixedDigits Property

Word Developer Reference

True if words that contain numbers are ignored while checking spelling. Read/write Boolean.

Syntax

expression.IgnoreMixedDigits

expression   An expression that returns an Options object.

Example

This example sets Microsoft Word to ignore words that contain numbers, and then it checks spelling in the active document.

Visual Basic for Applications
  Options.IgnoreMixedDigits = True
ActiveDocument.CheckSpelling

This example returns the current status of the Ignore words with numbers option on the Spelling & Grammar tab in the Options dialog box.

Visual Basic for Applications
  Dim blnTemp As Boolean

blnTemp = Options.IgnoreMixedDigits

See Also