Share via


GraphUndoManager<T>.RedoStack Property

 

Gets the current entries on the redo stack, ordered most to least recent.

Namespace:   Microsoft.VisualStudio.GraphModel
Assembly:  Microsoft.VisualStudio.GraphModel (in Microsoft.VisualStudio.GraphModel.dll)

Syntax

protected abstract IEnumerable<T> RedoStack { get; }
protected:
property IEnumerable<T>^ RedoStack {
    virtual IEnumerable<T>^ get() abstract;
}
abstract RedoStack : IEnumerable<'T> with get
Protected MustOverride ReadOnly Property RedoStack As IEnumerable(Of T)

Property Value

Type: System.Collections.Generic.IEnumerable<T>

Entries from the redo stack, ordered most to least recent.

See Also

GraphUndoManager<T> Class
Microsoft.VisualStudio.GraphModel Namespace

Return to top