ITextUndoHistory.RedoStack Property

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

Namespace:  Microsoft.VisualStudio.Text.Operations
Assembly:  Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)

Syntax

'Declaration
ReadOnly Property RedoStack As IEnumerable(Of ITextUndoTransaction)
IEnumerable<ITextUndoTransaction> RedoStack { get; }
property IEnumerable<ITextUndoTransaction^>^ RedoStack {
    IEnumerable<ITextUndoTransaction^>^ get ();
}
abstract RedoStack : IEnumerable<ITextUndoTransaction> with get
function get RedoStack () : IEnumerable<ITextUndoTransaction>

Property Value

Type: System.Collections.Generic.IEnumerable<ITextUndoTransaction>
The redo stack for this history.

Remarks

The top item of this stack is the most recent transaction, and the bottom is the oldest transaction

.NET Framework Security

See Also

Reference

ITextUndoHistory Interface

Microsoft.VisualStudio.Text.Operations Namespace