该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


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" );
注意: 
目录