Find.MatchFuzzy Property

Word Developer Reference

True if Microsoft Word uses the nonspecific search options for Japanese text during a search. Read/write Boolean.

Syntax

expression.MatchFuzzy

expression   An expression that returns a Find object.

Example

This example conducts a nonspecific search for "" in the selected range and selects the next occurrence (for example, "").

Visual Basic for Applications
  With Selection.Find
    .ClearFormatting
    .Text = "pianopianopiano"
    .MatchFuzzy = True
    .Execute Format:=False, Forward:=True, Wrap:=wdFindContinue
End With

See Also