For the latest version of JMP Help, visit JMP.com/help.

This appendix provides the names of all icons used in JMP. Specify the quoted icon name in the Icon Box() function to create a display box that contains the icon. For example, the following example constructs a display box that contains the Nominal icon.
Icon Box( "Nominal" ) constructs a display box that contains the Nominal icon.
Icon names can also be used in Button Box(), Tree Node(), Tree Box(), Tab Page Box(), command menu items in an add-in, and window objects.
nw = New Window( "Icon Example",
    Icon Box( "Nominal" ),
    bb = Button Box( "Example Text", ),
    Tree Box( {tn = Tree Node( "Example" )} ),
    Tab Page Box( Title( "Example Text" ), Icon( "Nominal" ), Text Box( "Example Text" ) ),
    List Box( {{"Example Text", "Nominal"}} )
);
bb << Set Icon( "Nominal" );
tn << Set Icon( "Nominal" );
nw << Set Window Icon( "Nominal" );
Notes: 
Contents 

Help created on 3/19/2020