cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

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