Go to: Synopsis. Return value. Flags. MEL examples.
toolCollection [-clear] [-collectionItemArray] [-defineTemplate string] [-exists] [-global boolean] [-numberOfCollectionItems] [-parent string] [-select string] [-useTemplate string]
[string]
toolCollection is undoable, queryable, and editable.
This command creates a tool button collection. Collections are parented
to the current default layout if no parent is specified with
the -p/parent flag. As children of the layout they will be deleted when
the layout is deleted. Collections may also span more than one window
if the -gl/global flag is used. In this case the collection has no parent
and must be explicitly deleted with the 'deleteUI' command when it is no
longer wanted.
string | The name of the toolCollection created. |
In query mode, return type is based on queried flag.
clear, collectionItemArray, defineTemplate, exists, global, numberOfCollectionItems, parent, select, useTemplate
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can be used more than once in a command.
|
string $window = `window`;
columnLayout;
toolCollection;
toolButton
-tool selectSuperContext
-toolImage1 selectSuperContext "aselect.xpm";
toolButton
-tool moveSuperContext
-toolImage1 moveSuperContext "move_M.png";
toolButton
-tool scaleSuperContext
-toolImage1 scaleSuperContext "scale_M.png";
showWindow $window;