| UndoBufferUndoStack Property |
Gets the undo stack.
Namespace: DigitalRune.UndoAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public ReadOnlyCollection<IUndoableOperation> UndoStack { get; }
Public ReadOnly Property UndoStack As ReadOnlyCollection(Of IUndoableOperation)
Get
public:
property ReadOnlyCollection<IUndoableOperation^>^ UndoStack {
ReadOnlyCollection<IUndoableOperation^>^ get ();
}
member UndoStack : ReadOnlyCollection<IUndoableOperation> with get
Property Value
Type:
ReadOnlyCollectionIUndoableOperationThe undo stack.
Remarks
The undo stack contains the operations in last-in-first-out order: The first element
is the operation that was executed last and that needs to be undone first.
This is a read-only collection and should only be used to read information about the most
recently executed operations. The operations on the undo stack should not be manipulated
directly. Call Undo or Redo to undo or redo operations.
See Also