report1.Load("C:\\test.frx");
(report1.FindObject("Data1") as DataBand).Sort.Add(new Sort("[Product.Cost]"));
正在运作。
如何更改C#中的排序顺序Ascending
或Descending
答案 0 :(得分:1)
尝试使用此尺寸:
new Sort(String column, Boolean descending)
new Sort("[Product.Cost]", true) // For descending
new Sort("[Product.Cost]", false) // For ascending