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
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