Share via


XmlStore.UndoRedoCompleted Event

 

Occurs when a new XmlEditingScope object has been created as a result of an undo/redo operation.

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

Syntax

public abstract event EventHandler<XmlEditingScopeEventArgs> UndoRedoCompleted
public:
event EventHandler<XmlEditingScopeEventArgs^>^ UndoRedoCompleted {
    virtual void add(EventHandler<XmlEditingScopeEventArgs^>^ value) abstract;
    virtual void remove(EventHandler<XmlEditingScopeEventArgs^>^ value) abstract;
}
abstract UndoRedoCompleted : IEvent<EventHandler<XmlEditingScopeEventArgs>,
    XmlEditingScopeEventArgs>
Public MustOverride Event UndoRedoCompleted As EventHandler(Of XmlEditingScopeEventArgs)

Remarks

When a new XmlEditingScope object has been created as a result of an undo/redo operation, the XmlEditingScope returned from the XmlEditingScopeEventArgs will have a parent XmlEditingScope that is the original XmlEditingScope that was undone or redone.

See Also

XmlStore Class
Microsoft.VisualStudio.XmlEditor Namespace

Return to top