[]
Gets or sets whether the sort is case sensitive.
This property indicates whether text values are compared by letter case when the sort is applied.
bool MatchCase { get; set; }
Property MatchCase As Boolean
ISort sort = worksheet.Sort;
sort.MatchCase = true;
bool matchCase = sort.MatchCase;