cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
Aadit
Level III

PDF Page Setup Dialog box

Hello guys,

 

Can any1 say how to get the Page setup winsodw in jmp scripting. i want to export journal as pdf in app designer but i want user to specify the settings. i am not able to find any info how to open this page setup window. Kingly help. Thanks in advance

Aadit_0-1709215745318.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: PDF Page Setup Dialog box

One option is to open it during save

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv = dt << Bivariate(y(:weight), x(:height));
rbiv = biv << report;

rbiv << Save PDF("$TEMP/jmp_example.pdf", Show Page Setup(1));
-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: PDF Page Setup Dialog box

One option is to open it during save

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv = dt << Bivariate(y(:weight), x(:height));
rbiv = biv << report;

rbiv << Save PDF("$TEMP/jmp_example.pdf", Show Page Setup(1));
-Jarmo