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

Concepts

Find Object

Find Object Members