Go to: Synopsis. Return value. Related. Flags. MEL examples.
polySelectConstraintMonitor [-changeCommand string string] [-create] [-delete]
string
polySelectConstraintMonitor is undoable, NOT queryable, and NOT editable.
Manage the window to display/edit the polygonal selection constraint
parameters
None
polyInstallAction, polyListComponentConversion, polySelectConstraint
changeCommand, create, delete
Long name (short name) |
Argument types |
Properties |
|
-changeCommand(-cc)
|
string string
|
|
|
Specifies the mel callback to refresh the window. First argument is
the callback, second is the window name.
|
|
-create(-c)
|
|
|
|
Specifies the Monitor should be created
|
|
-delete(-d)
|
|
|
|
Specifies that the Monitor should be removed
|
|
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.
|
// create Monitor:
polySelectConstraintMonitor -create;
// set up a callback for when the constraints are changed:
polySelectConstraintMonitor -changeCommand "polygonConstraintUpdate" $whichPanel;
// delete Monitor:
polySelectConstraintMonitor -delete;