cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
jaysiri
Level I

Tabbox

I am trying to create a tab box display with a bivariate plot. I have the script that already generates the bivariate fit.

what is the jsl code for creating tabbox?

1 REPLY 1
txnelson
Super User

Re: Tabbox

Go to:

     Help==>Scripting Index==>TabPageBox()

tabbox.GIF

Names Default To Here( 1 );
New Window( "Example",
	Tab Box(
		tp =
		Tab Page Box(
			"alpha",
			Panel Box( "panel", Text Box( "text" ) )
		),
		Tab Page Box(
			"beta",
			Popup Box( {"x", ex = 1, "y", ex = 2} )
		)
	)
);
Jim