finishJob

Finish a print job.
finishJob()
This function finishes a print job which was started by calling the startJob function.
VB:
' set parameters that apply to the whole print job pdf.printer = "printer55" pdf.startJob() ' set parameters that apply to the next part of the print job pdf.loadFile("file1.pdf") pdf.paperID = 1 pdf.pages = "3-5" pdf.printToJob() ' set parameters for the next part of the print job pdf.loadFile("file2.pdf") pdf.paperID = 2 pdf.pages = "2-4" pdf.printToJob() ... ' finish the print job pdf.finishJob()
startJob
printOtherFileToJob
printToJob