Search
Schedule.getUndoEnabled Method
See Also
 






Gets a value indicating whether saving action records for later undo is enabled.

Namespace: com.mindfusion.scheduling.model
Package: com.mindfusion.scheduling.model

 Syntax

Java  Copy Code

public boolean getUndoEnabled ()

 Return Value

true, to save actions for later undo; otherwise, false. The default is false.

 Remarks

To undo the last recorded action, call the undo method. It can be redone again by calling redo. Custom operations can be integrated into the undo/redo system by deriving from the Command class and running the operations by means of the executeCommand method.

 See Also