internal void AddSort(IRoleType subSortRoleType, SortDirection subSortDirection) { if (this.subSorter == null) { this.subSorter = new ExtentSort(subSortRoleType, subSortDirection); } else { this.subSorter.AddSort(subSortRoleType, subSortDirection); } }
public override Allors.Extent AddSort(IRoleType roleType, SortDirection direction) { if (this.sorter == null) { this.sorter = new ExtentSort(roleType, direction); } else { this.sorter.AddSort(roleType, direction); } this.Invalidate(); return(this); }