[]
This class provides undo and redo operations.
public class History : IDisposable
| Name | Description |
|---|---|
| CanRedo | Returns true if redo command can be executed |
| CanUndo | Returns true if undo command can be executed |
| RedoList | Returns the list of available redo operations. |
| UndoList | Returns the list of available undo operations. |
| Name | Description |
|---|---|
| Dispose() | Releases all resources used by the History class. |
| Dispose(bool) | Releases unmanaged resources used by the History class. |
| Redo() | Redo the last operation |
| Redo(int) | Redo a given number of operations. |
| Undo() | Undo the last operation. |
| Undo(int) | Undo a given number of operations. |