Range.SpellingErrors property (Word)

Returns a ProofreadingErrors collection that represents the words identified as spelling errors in the specified range. Read-only.

Syntax

expression. SpellingErrors

expression A variable that represents a Range object.

Remarks

For information about returning a single member of a collection, see Returning a Single Object from a Collection.

Example

This example checks the specified range for spelling errors and displays each error found.

Set myErrors = ActiveDocument.Paragraphs(3).Range.SpellingErrors 
If myErrors.Count = 0 Then 
 Msgbox "No spelling errors found." 
Else 
 For Each myErr in myErrors 
 Msgbox myErr.Text 
 Next 
End If

See also

Range Object

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.