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
See also
Support and feedback
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.