Go to: Synopsis. Return value. Related. Flags. MEL examples.

Synopsis

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

Return value

None

Related

polyInstallAction, polyListComponentConversion, polySelectConstraint

Flags

changeCommand, create, delete
Long name (short name) Argument types Properties
-changeCommand(-cc) string string create
Specifies the mel callback to refresh the window. First argument is the callback, second is the window name.
-create(-c) create
Specifies the Monitor should be created
-delete(-d) create
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.

MEL examples

// create Monitor:
polySelectConstraintMonitor -create;

// set up a callback for when the constraints are changed:
polySelectConstraintMonitor -changeCommand "polygonConstraintUpdate" $whichPanel;

// delete Monitor:
polySelectConstraintMonitor -delete;