Document.GrammaticalErrors property (Word)

Returns a ProofreadingErrors collection that represents the sentences that failed the grammar check in the specified document. Read-only.

Syntax

expression. GrammaticalErrors

expression A variable that represents a Document object.

Remarks

There can be more than one error per sentence. If there are no grammatical errors, the Count property for the ProofreadingErrors collection returned by the GrammaticalErrors property returns 0 (zero).

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 grammatical errors. If any errors are found, a new spelling and grammar check is started.

If ActiveDocument.GrammaticalErrors.Count = 0 Then 
 Msgbox "There are no grammatical errors." 
Else 
 ActiveDocument.CheckGrammar 
End If

See also

Document 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.