Document.SpellingErrors property (Word)
Returns a ProofreadingErrors collection that represents the words identified as spelling errors in the specified document or range. Read-only.
expression. SpellingErrors
expression A variable that represents a Document object.
For information about returning a single member of a collection, see Returning an object from a collection.
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
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.