ITextUndoHistory.RedoStack Property

Definition

The redo stack for this history. It does not include any currently open or undo transactions.

public:
 property System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Text::Operations::ITextUndoTransaction ^> ^ RedoStack { System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Text::Operations::ITextUndoTransaction ^> ^ get(); };
public System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Text.Operations.ITextUndoTransaction> RedoStack { get; }
member this.RedoStack : seq<Microsoft.VisualStudio.Text.Operations.ITextUndoTransaction>
Public ReadOnly Property RedoStack As IEnumerable(Of ITextUndoTransaction)

Property Value

The redo stack for this history.

Remarks

This stack includes the most recent transaction (the top item of the stack) to the oldest transaction (the bottom item of the stack).

Applies to