Find.NoProofing property (Word)

True if Microsoft Word finds or replaces text that the spelling and grammar checker ignores. Read/write Long.

Syntax

expression. NoProofing

expression A variable that represents a 'Find' object.

Example

This example searches for the string "hi" in text that the spelling and grammar checker ignores.

With Selection.Find 
 .ClearFormatting 
 .Text = "hi" 
 .NoProofing = True 
 .Execute Forward:=True 
End With

See also

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