Duplex printing with a blank page

Hello,

I’m having an issue when printing a document with four pages. The second page is blank and the other three have text. I set the printer settings to duplex vertical then print the doc. When printed it will print the first page and second page separately and then duplex the the last two pages.

Let me know if there is any other information you may need.

Thanks

Hi Chad,

Thanks for your inquiry. Please download the latest version of Aspose.Words for .NET from here and let us know how does it go on your side. Please try run the following simplified code for testing:

Document doc = new Document(@"C:\Temp\CN477ContractChange.doc");
PrinterSettings ps = new PrinterSettings();
ps.PrinterName = "your printer name";
ps.Duplex = Duplex.Vertical;
doc.Print(ps, "documentName");

I hope, this helps.

Best regards,