ジャンプ先: 概要. 戻り値. 関連. MEL 例.

概要

redo

redo は、取り消し可能、照会不可能、および編集不可能です。

最後に取り消されたコマンドを元に戻すリストから取り出して再実行します。

戻り値

なし

関連

flushUndo, undo, undoInfo

MEL 例

// In this particular example, each line needs to be executed
// separately one after the other. Executing lines separately
// guaranties that commands are properly registered in the undo
// stack.

polyCube;
// Result: pCube1 polyCube1 //

undo;
// Undo: polyCube; //

redo;
// Redo: polyCube; //
// Result: pCube1 polyCube1 //