Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

how to NOT shrink on nUp pageHandling

Avatar

Former Community Member

Hi,

Could someone please help me how to not shrink a page while printing Multiple Pages Per Sheet.

this.setPageRotations(0,0,180);
var pp = this.getPrintParams();
pp.interactive = pp.constants.interactionLevel.silent;
pp.firstPage = 0;
pp.lastPage = 1;
pp.pageHandling = pp.constants.handling.nUp;
pp.nUpPageOrders = pp.constants.nUpPageOrders.Vertical;
pp.nUpNumPagesV = 2;
this.print(pp);
this.setPageRotations(0,0,0);

I am printing 2 A5 pdf pages on 1 A4 paper and the result is the pages get shrunk. How to stop this?

Thanks in advance.

Nag

0 Replies