Go to: Synopsis. Return value. MEL examples.

Synopsis

ctxEditMode

ctxEditMode is undoable, NOT queryable, and NOT editable.

This command tells the current context to switch edit modes.
It acts as a toggle.

Return value

None

MEL examples

// Create a poly cube
polyCube -w 2 -h 2 -d 2 -n pCube1;

// Create a new rotate manip context, then switch to it.
manipRotateContext manipRotateContext1;
setToolTo manipRotateContext1;

// Switch to edit mode to change pivots
ctxEditMode;