C#如何在快速报告中更改排序顺序

时间:2015-08-10 14:59:01

标签: c# report reporting fastreport

report1.Load("C:\\test.frx");
(report1.FindObject("Data1") as DataBand).Sort.Add(new Sort("[Product.Cost]")); 

正在运作。

如何更改C#中的排序顺序AscendingDescending

1 个答案:

答案 0 :(得分:1)

尝试使用此尺寸:

new Sort(String column, Boolean descending)
new Sort("[Product.Cost]", true) // For descending
new Sort("[Product.Cost]", false) // For ascending