GraphUndoManager<T>.UndoStack Property

 

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

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

Syntax

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

Property Value

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

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

See Also

GraphUndoManager<T> Class
Microsoft.VisualStudio.GraphModel Namespace

Return to top