This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Editor > ESRI.ArcGIS.Editor > Interfaces > IE > IEditor Interface > IEditor.UndoOperation Method (ArcObjects .NET 10.4 SDK) |
Undo an edit operation.
[Visual Basic .NET]
Public Sub UndoOperation ( _
)
[C#] public void UndoOperation ( );
private void UNDO()
{
IMxDocument m_mxDoc;
m_mxDoc.OperationStack.Undo();
}
Private Sub Undo()
Dim pMxDoc As IMxDocument=m_application.Document
pMxDoc.OperationStack.Undo()
End Sub