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 distinguishes between full-width and half-width letters or characters during a search. Read/write Boolean.
Syntax
expression. MatchByte
expression A variable that represents a 'Find' object.
Example
This example searches for the term "マイクロソフト" in the specified range without distinguishing between full-width and half-width characters.
With Selection.Find
.ClearFormatting
.MatchWholeWord = True
.MatchByte = False
.Execute FindText:="マイクロソフト"
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.