MatchFuzzy Property

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

expression.MatchFuzzy

expression Required. An expression that returns a Find object.

Example

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

With Selection.Find
    .ClearFormatting
    .Text = ""
    .MatchFuzzy = True
    .Execute Format:=False, Forward:=True, Wrap:=wdFindContinue
End With

Applies to | Find Object

See Also | ClearAllFuzzyOptions Method | SetAllFuzzyOptions Method