Find.MatchByte property (Word)

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

Find Object

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.