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
hogi
Level XIII

resize a scrollbox?

How can I change the size of a scroll box?

new window("test", panel Box("",sb = Scroll Box (size(200,200) )));

sb << set   size(1000,1000)
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: resize a scrollbox?

Names Default To Here(1);

nw = New Window("test", 
	Panel Box("", 
		sb = Scroll Box(size(200, 200))
	)
);

sb << Height(1000);
sb << Width(1000);

jthi_0-1769717767625.png

 

-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: resize a scrollbox?

Names Default To Here(1);

nw = New Window("test", 
	Panel Box("", 
		sb = Scroll Box(size(200, 200))
	)
);

sb << Height(1000);
sb << Width(1000);

jthi_0-1769717767625.png

 

-Jarmo

Recommended Articles