[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.FindOptions.MatchByte

MatchByte Property

MatchByte

Gets or sets how double-byte characters are matched when this object is used with Find(object, IRange, FindOptions).

Declaration
public bool MatchByte { get; set; }
Public Property MatchByte As Boolean
Examples
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);