cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
ComplexNerd
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

Recommended Articles