[]
Gets or sets how double-byte characters are matched when this object is used with Find(object, IRange, FindOptions).
public bool MatchByte { get; set; }
Public Property MatchByte As Boolean
worksheet.Range["A1"].Value = "A";
worksheet.Range["A2"].Value = "A";
FindOptions options = new FindOptions();
options.MatchByte = true;
bool matchByte = options.MatchByte;
worksheet.Range["A1:A2"].Find("A", null, options);