Constructs a button with the text title that executes script when clicked.
Returns 1 if the check box item specified by n is selected, or 0 otherwise.
Sets the check box item specified by n as either selected (1) or cleared (0).
Sets the check box item specified by n as either enabled (1) or disabled (0). The state of a disabled check box cannot be changed.
an optional command that adds all columns of the current data table into the list. Omitting "all" results in an empty collistbox with the “optional” label. To display “optional character”, specify "character". To display “optional numeric”, specify "numeric".
an optional command that sets the width of the list box to pixels. Pixels is a number that measures pixels.
An optional number that only allows n columns to be added to the list.
An optional number that only requires at least n columns for the list. If n=2, the top two slots in the Col List Box an initial display of “required numeric” (or whatever you set the data type to be).
Overrides any tool tips set using Set Tips() function. If there is a tip set for the box, you cannot set tips for each individual item.
Using Set Tip() with no arguments clears the list box tip and allows the individual item tool tips to be displayed.
The maxSelected argument only affects whether one or more than one item can be selected. It does not enforce a limit greater than 1.
Any additional Dialog items (for example, Max Col, Datatype).
Dialog is deprecated. Use New Window() with the Modal argument instead. See the Scripting Guide for details.
Returns a display box containing the excerpt designated by the report held at number report and the list of display subscripts subscripts. The subscripts reflect the current state of the report, after previous excerpts have been removed.
Converts expr() to a picture as it would appear in the Formula Editor.
an optional command that sets the width of the box to pix. pix is a number that measures pixels.
Constructs a box for editing global value directly.
Properties can include: framesize(x, y), Xname("title"), Yname("title"), Zname("title").
Named property arguments: title("title"), XScale(low, high), YScale(low, high), FrameSize(h, v), XName("x"), YName("y"), DoubleBufer, SuppressAxes.
Returns a display box that arranges the display boxes provided by the arguments in a horizontal layout. The <<Hold() message tells the sheet to own the report(s) that is excerpted.
H Splitter Box(<size(h,v)>, display box, <arguments>)
size(h,v)
Specifies the proportions of the last panel. <<Size(.25) resizes the last panel to 25% the splitter box height (or width, for vertical splitter boxes).
Specifies the proportions of each panel. db<<Set Sizes({.75, .25}) sizes the first panel to 75% and the second panel to 25% of the splitter box height (or width, for vertical splitter boxes).
<<Close Panel(n, <Boolean>)
Closes the panel that you specify. <<Close Panel(2) closes the second panel. With three or more panels, you must include the second Boolean value. That value indicates which panel expands to fill the space left by the closed panel.
<<Close Panel(2,0) closes the second panel; the following sibling takes the extra space.
<<Close Panel(2,1) closes the second panel; the preceding sibling takes the extra space.
<<Open Panel(n, <Boolean>)
Opens the panel that you specify. With three or more panels, you must include the second Boolean value. Works similar to <<Close Panel described above. The panels are initially opened. You use <<Open Panel only after using <<Close Panel.
Constructs a node of a tree (similar to Diagram output) containing text. Hier Box can contain additional Hier Boxes, allowing you to create a tree. The text can be a Text Edit Box.
Icon Box("Nominal") constructs a display box that contains the Nominal icon.
Icon Box( "$SAMPLE_IMAGES/pi.gif" ) inserts the pi.gif sample image.
1 displays the display boxes inside the If Box; if 0, does not display them.
Constructs a display box that displays the quoted string journal box. We recommend that you do not generate the journal text by hand.
Displays the matrix given in the usual array form.
Specifies the object that the user interacts with, such as a Text Box or Button Box. See the JMP Scripting Index for details.
Creates a new script window. The optional quoted string script is placed inside the script window.
Makes the new window a modal window, which prevents any other actions in JMP until the window is closed. If you do not include an OK or Cancel button, one is added automatically for you. Note: If used, this argument must be the second argument, directly after the window title. Available modal window arguments are:
<<On Open(expr) runs expr when the window is created.
Note: In data tables, On Open (or OnOpen) scripts that execute other programs are never run. Set the Evaluate OnOpen Scripts preference to control when the script is run.
<<On Close (expr) runs expr when the window is closed. Returns 0 if the window fails to close.
<<On Validate (expr) runs expr when the OK button is pressed. If it returns True, the window is closed otherwise the window remains open.
<<Return Result changes the window’s return value when it closes to match that of the deprecated Dialog() function.
Dialog() was deprecated in JMP 10. Use New Window() with the Modal argument instead. See the Modal Windows section in the Scripting Guide book for details on using New Window().
Creates a column named title with numeric entries given in list or matrix form.
Creates a column named title with numeric entries given in list or matrix form. The numbers can be edited.
Creates a new outline named title containing the listed display boxes.
Creates a display box labeled with the quoted string title that contains the listed display boxes.
Returns a display box labeled with the quoted string title to graph the numbers. The numbers can be either a list or a matrix.
Range Slider Box() returns a display box that shows a range slider control that ranges from minValue to maxValue. As the two sliders' positions change, their values are placed into lowVariable and highVariable, and the script is run.
Returns the display tree of a platform obj. This can also be sent as a message to a platform:
Creates an x by y-sized scene box for 3-D graphics.
Constructs an editable box that contains the quoted string script. The editable box is a script window and can both be edited and run as JSL.
Scroll Box(<size(h,v)>, <flexible(Boolean)>, display box, ...)
Optional. The h and v arguments specify the size of the box in pixels.
Returns a display box containing the display box argument with the quoted string title as its title.
You can send Set Width and Rescale Slider as commands to a slider object. For example:
Spacer Box(<size(h,v)>, <color(color)>)
Optional. The h and v arguments specify the size of the box in pixels.
Creates column in the table containing the string items listed. The string boxes are editable.
Creates a report table with the display boxes listed as columns.
Tree Box(<{rootnodes}>, <size(width, height)>, <MultiSelect>)
Specifies the names for the root nodes created by Tree Node() which the box contains.
Returns a display box that arranges the display boxes provided by the arguments in a vertical layout. The <<Hold() message tells the sheet to own the report(s) that is excerpted.
V Splitter Box(<size(h,v)>, display box, <arguments>)