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 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" );
•
|
Consider installing the Built-In JMP Icons add-in. The add-in lets you view icons interactively and see what they look like in different contexts. Download the add-in from https://community.jmp.com/t5/JMP-Add-Ins/Built-In-JMP-Icons/ta-p/42251.
|