cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
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