Find.NoProofing Property

Word Developer Reference

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.

Visual Basic for Applications
  With Selection.Find
    .ClearFormatting
    .Text = "hi"
    .NoProofing = True
    .Execute Forward:=True
End With

See Also