This document is archived and information here might be outdated.  Recommended version.


IEngineEditor.AbortOperation Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IE > IEngineEditor Interface > IEngineEditor.AbortOperation Method
ArcGIS Developer Help

IEngineEditor.AbortOperation Method

Aborts an edit operation.

[Visual Basic .NET]
Public Sub AbortOperation ( _
)
[C#]
public void AbortOperation (
);
[C++]
HRESULT AbortOperation(
void
);

Product Availability

Available with ArcGIS Engine.

Description

AbortOperation should be used to terminate the edit operation without saving any changes. Those changes that were made after IEngineEditor::StartOperation was called are undone, and nothing is added to the operation stack.

You may wish to test that your edit operation is valid before saving any changes. If the test fails you should call AbortOperation instead of IEngineEditor::StopOperation.

Remarks

This method fires theIEngineEditEvents::OnSelectionChanged and IEngineEditEvents::OnAbort events.

See Also

IEngineEditor Interface