码迷,mamicode.com
首页 > 编程语言 > 详细

farpoint合计列不参与排序实现方法

时间:2017-10-25 23:52:38      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:farpoint 排序 合计

         private void neuSpread1_AutoSortingColumn(object sender, FarPoint.Win.Spread.AutoSortingColumnEventArgs e)
        {
            //重写排序方法
            e.Cancel = true;
            FarPoint.Win.Spread.SortInfo[] sorter = new FarPoint.Win.Spread.SortInfo[1];
            sorter[0] = new FarPoint.Win.Spread.SortInfo(e.Column, e.Ascending, System.Collections.Comparer.Default);
            this.neuSpread1_Sheet1.SortRows(0, this.neuSpread1_Sheet1.Rows.Count - 1, sorter);
        }

       打印时需设置否则合计行打印不出来:
       this.neuSpread1_Sheet1.PrintInfo.UseMax = false;

本文出自 “海的儿子” 博客,谢绝转载!

farpoint合计列不参与排序实现方法

标签:farpoint 排序 合计

原文地址:http://4769069.blog.51cto.com/4759069/1975972

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!