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