ArcObjects Library Reference (GeoDatabase)  

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 VARIANT_BOOL disconnectTo [in]   disconnectTo is a parameter of type VARIANT_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