如果是用户点击列头的话现在是只能按照某一列单独排序,
如果想要同时多列排序可以调用SortColumns 方法
public bool SortColumns(int column, int columnCount, SortInfo[] sortInfo);
FarPoint.Win.Spread.SortInfo[] sort = new FarPoint.Win.Spread.SortInfo[1];
sort[0] = new FarPoint.Win.Spread.SortInfo(0, false, System.Collections.Comparer.Default);
fpSpread1.ActiveSheet.SortColumns(0, 2, sort); |