cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
Choose Language Hide Translation Bar
lala
Level IX

How to adjust the height of this window with JSL?

It's not recorded in the log

Thanks!

2024-08-28_14-47-43.png

 

2 REPLIES 2
jthi
Super User

Re: How to adjust the height of this window with JSL?

Modify the size of the splitter box

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
sb = Window("Big Class")[SplitterBox(1)];

sb << Set Sizes({0.1, 0.9})
-Jarmo
lala
Level IX

Re: How to adjust the height of this window with JSL?

Thank jthi!

dt = Open("$SAMPLE_DATA/Big Class.jmp");
na=dt<<Get Name();
sb = Window(na)[SplitterBox(1)];

sb << Set Sizes({0.1, 0.9});
Wait(1);
sb << Set Sizes({1.9, 0.9})

Recommended Articles