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