Document.SpellingErrors Property (Word)
Returns a ProofreadingErrors collection that represents the words identified as spelling errors in the specified document or range. Read-only.
Syntax
expression .SpellingErrors
expression A variable that represents a Document object.
Remarks
For information about returning a single member of a collection, see Returning an Object from a Collection.
Example
This example checks the active document for spelling errors and displays the number of errors found.
myErr = ActiveDocument.SpellingErrors.Count
If myErr = 0 Then
Msgbox "No spelling errors found."
Else
Msgbox myErr & " spelling errors found."
End If