Options.SuggestSpellingCorrections Property

Word Developer Reference

True if Microsoft Word always suggests alternative spellings for each misspelled word when checking spelling. Read/write Boolean.

Syntax

expression.SuggestSpellingCorrections

expression   An expression that returns an Options object.

Example

This example sets Word to always suggest alternative spellings for misspelled words, and then it checks spelling in the active document.

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

This example returns the current status of the Always suggest corrections option on the Spelling & Grammar tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.SuggestSpellingCorrections

See Also