Hello community. I am trying to print with the code below my PDF form using "Microsoft Print to PDF" and after printing (saving as a flattened image file) it should set the printer to default (some printer) without reopening Adobe Reader, but not working. Can anyone help me?
Thanks in advance
var defaultPrinterName = this.getPrintParams().printerName;
var pp = this.getPrintParams();
pp.printerName = "Microsoft Print to PDF";
pp.NumCopies = 1;
pp.DuplexType = pp.constants.duplexTypes.Simplex;
pp.pageHandling = pp.constants.handling.fit;
pp.printRange = null;
pp.interactive = pp.constants.interactionLevel.silent;
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, printParams: pp });
pp.printerName = defaultPrinterName;
Solved! Go to Solution.
Views
Replies
Total Likes
@Turan_Elkhan I feel you have posted in wrong community group. Could you please post it the below forum , you might get an answer
@Turan_Elkhan I feel you have posted in wrong community group. Could you please post it the below forum , you might get an answer
Thank you. I'll do it.
Views
Likes
Replies