|
IDL Reference Guide: iTools Object Classes |
|
The IDLitOperation::RedoOperation function method is called by the iTool system when the user requests the re-execution of an operation (usually by selecting Redo from the iTool Edit menu or toolbar).
| Note An operation based on the IDLitOperation class must implement this method. See Creating an Operation for details. |
| Note If you are creating an operation that acts directly on the data that underlies a visualization, consider using the IDLitDataOperation class rather than the IDLitOperation class. IDLitDataOperation provides additional automation of the Undo and Redo mechanisms. |
If this method is implemented for an operation, it should do the following:
Result = Obj->[IDLitOperation::]RedoOperation(CommandSet)
The return value is 1 if the operation was redone successfully, or zero otherwise.
An IDLitCommandSet object that contains all the IDLitCommand objects that were stored during the original execution of the operation.
None
IDLitOperation::RecordFinalValues, IDLitOperation::RecordInitialValues, IDLitOperation::UndoOperation
IDL Online Help (March 06, 2007)