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


INAWindow.StopOperation Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > NetworkAnalystUI > ESRI.ArcGIS.NetworkAnalystUI > Interfaces > IN > INAWindow Interface > INAWindow.StopOperation Method
ArcGIS Developer Help

INAWindow.StopOperation Method

Stops an analysis window operation.

[Visual Basic .NET]
Public Sub StopOperation ( _
    ByVal pNAContext As INAContext, _
    ByVal Message As String _
)
[C#]
public void StopOperation (
    INAContext pNAContext,
    string Message
);

Product Availability

Available with ArcGIS Desktop. Requires Network Analyst Extension.

Remarks

Use StartOperation to start an edit operation on items in an NAClass.  It should be followed with a call to StopOperation.  The combination of these two calls will add an edit operation to ArcMap that can be undone/redone using the undo/redo buttons in ArcMap.

The Message parameters passed into StopOperation will be displayed in the Undo button.

See Also

INAWindow Interface