IUndoableEdit

StockSharp.Diagram

This interface specifies how a document change (an edit).

Methods

CanRedo
public bool CanRedo()
result = iUndoableEdit.CanRedo()

Determine if this edit is ready to be and can be redone.

CanUndo
public bool CanUndo()
result = iUndoableEdit.CanUndo()

Determine if this edit is ready to be and can be undone.

Clear
public void Clear()
iUndoableEdit.Clear()

Forget about any state remembered in this edit.

Redo
public void Redo()
iUndoableEdit.Redo()

Restore the new state of this edit after having been undone.

Undo
public void Undo()
iUndoableEdit.Undo()

Restore the previous state of this edit.