Posted 23 February 2018, 1:27 am EST
Hello,
Does anybody know if there’s an option to enable duplex printing in Page/RDL reports? If yes, could you please tell me how to do it?
Forums Home / ActiveReports / General Discussion
Posted by: alexshakurin on 23 February 2018, 1:27 am EST
Posted 23 February 2018, 1:27 am EST
Hello,
Does anybody know if there’s an option to enable duplex printing in Page/RDL reports? If yes, could you please tell me how to do it?
Posted 23 February 2018, 2:36 am EST
You can enable Duplex printing in Page/RDL reports using PrinterSettings.Duplex property as below:
PageReport rptAllCustomers = new PageReport(new FileInfo("../../Reports/AllCustomers.rdlx"));
rptAllCustomers.Document.Printer.PrinterSettings.Duplex = System.Drawing.Printing.Duplex.Horizontal;