Options.IgnoreUppercase Property

Word Developer Reference

True if words in all uppercase letters are ignored while checking spelling. Read/write Boolean.

Syntax

expression.IgnoreUppercase

expression   An expression that returns an Options object.

Example

This example sets Word to ignore words in all uppercase letters, and then it checks spelling in the active document.

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

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

Visual Basic for Applications
  Dim blnTemp As Boolean

blnTemp = Options.IgnoreUppercase

See Also