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


IEdgeFeature.DisconnectAtEndpoint Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IE > IEdgeFeature Interface > IEdgeFeature.DisconnectAtEndpoint Method
ArcGIS Developer Help

IEdgeFeature.DisconnectAtEndpoint Method

Perform the disconnection at either or both of the endpoint.

[Visual Basic .NET]
Public Sub DisconnectAtEndpoint ( _
    ByVal EID As Integer, _
    ByVal fromEID As Integer, _
    ByVal toEID As Integer, _
    ByVal disconnectFrom As Boolean, _
    ByVal disconnectTo As Boolean _
)
[C#]
public void DisconnectAtEndpoint (
    int EID,
    int fromEID,
    int toEID,
    bool disconnectFrom,
    bool disconnectTo
);
[C++]
HRESULT DisconnectAtEndpoint(
  long EID,
  long fromEID,
  long toEID,
  VARIANT_BOOL disconnectFrom,
  VARIANT_BOOL disconnectTo
);
[C++]
Parameters
EID [in]

EID is a parameter of type long fromEID [in]
fromEID is a parameter of type long toEID [in]
toEID is a parameter of type long disconnectFrom [in]
disconnectFrom is a parameter of type bool disconnectTo [in]
disconnectTo is a parameter of type bool

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

All edits to features that participate in a Topology or Geometric Network must be performed within an edit session and bracketed within an edit operation.

See Also

IEdgeFeature Interface