Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
With Selection.Find
.ClearFormatting
.Text = "ピアノ"
.MatchFuzzy = True
.Execute Format:=False, Forward:=True, Wrap:=wdFindContinue
End With
See also
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.