liujunxi007 发表于 2019-9-21 16:24:28

ActiveReport的打印属性

PrintSection 对于这个方法的详解以及替换 有大佬了解的话可以留个联系方式详谈一下,本人由于刚刚学习ActiveReport又想快点解决这个问题,多多谅解

KearneyKang 发表于 2019-9-23 09:14:15

你是想了解ACtiveReports打印属性的设置吗?然后那你的项目是C/S端的项目是吧?你可以参考这个博客:https://gcdn.grapecity.com.cn/forum.php?mod=viewthread&tid=49016&extra=page%3D4
打印的代码:
string file_name = @"..\..\PageReport1.rdlx";
GrapeCity.ActiveReports.PageReport pageReport = new GrapeCity.ActiveReports.PageReport(new System.IO.FileInfo(file_name));
GrapeCity.ActiveReports.Document.PageDocument pageDocument = new GrapeCity.ActiveReports.Document.PageDocument(pageReport);
pageDocument.Print(true, true, false);


页: [1]
查看完整版本: ActiveReport的打印属性