Multiple PDF Print
Printing multiple PDF documents to a printer is accomplished by adding the PDFs to a PrintJob instance's Pages property (PrintJobPageList) using the Add method. This example demonstrates how to send multiple PDF documents to the default printer as a single print job.
Note: The example uses the default printer (using the static property Printer.Default). Use the actual printer name to specify a specific printer (see PrintJob).
PrintJob printJob = new PrintJob(Printer.Default);
printJob.Pages.Add(pdfFilePath_1);
printJob.Pages.Add(pdfFilePath_2);
printJob.Pages.Add(pdfFilePath_3);
printJob.Print();
Dim MyPrintJob As New PrintJob(Printer.Default)
MyPrintJob.Pages.Add(pdfFilePath_1)
MyPrintJob.Pages.Add(pdfFilePath_2)
MyPrintJob.Pages.Add(pdfFilePath_3)
MyPrintJob.Print()