mountain2657 发表于 2015-7-20 09:30:00

针对某一列或某几列进行排序

如何针对特定的某一列或某几列进行排序

iceman 发表于 2015-7-20 14:22:00

回复 1楼mountain2657的帖子

可以通过 SortColumns 方法来实现多列排序,请参考代码:

FarPoint.Web.Spread.SheetView sv;
FarPoint.Web.Spread.SortInfo[] s = new FarPoint.Web.Spread.SortInfo;
s = new FarPoint.Web.Spread.SortInfo(0, false);
sv = FpSpread1.ActiveSheetView;
sv.SortColumns(0, 2, s);

iceman 发表于 2015-7-29 09:17:00

回复 1楼mountain2657的帖子

为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢   
http://gcdn.gcpowertools.com.cn/attachment.aspx?attachmentid=10062
页: [1]
查看完整版本: 针对某一列或某几列进行排序