Did you find this guide helpful?
Some test text!
Core / Guides / Print a document
To print a PDF to a default printer.
PDFDoc pdfdoc = new PDFDoc(filename);
// Setup PrinterMode options
PrinterMode printerMode = new PrinterMode();
printerMode.SetCollation(true);
printerMode.SetCopyCount(1);
printerMode.SetDPI(600); // regardless of ordering, an explicit DPI setting overrides the OutputQuality setting
printerMode.SetDuplexing(PrinterMode.DuplexMode.e_Duplex_Auto);
// Print the document on the default printer, name the print job the name of the
// file, print to the printer not a file, and use printer options:
Print.StartPrintJob(pdfdoc, "", pdfdoc.GetFileName(), "", null, printerMode, null);
Print a PDF file
Full sample code which illustrates how to print a PDF document using the currently selected default printer.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales