CheckSpellingAsYouType Property Example
This example turns off automatic spell checking in Word.
Options.CheckSpellingAsYouType = False
This example sets Word to check for spelling errors as you type and to display any errors found in the active document.
Options.CheckSpellingAsYouType = True
ActiveDocument.ShowSpellingErrors = True
This example returns the status of the Check spelling as you type option on the Spelling & Grammar tab in the Options dialog box (Tools menu).
temp = Options.CheckSpellingAsYouType