I'm trying to print multiple copies of a report via PDFTron, using the code:
Dim pdfDoc As New PDFDoc("C:\Test.pdf")
Dim pages As New PageSet(1, pdfDoc.GetPageCount)
Dim pm As New PrinterMode
pm.SetCollation(True)
pm.SetCopyCount(3)
PDF.Print.StartPrintJob(pdfDoc, "", pdfDoc.GetFileName, "", pages, pm)
But whenever it runs it only prints 1 copy. What am I missing?