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


INetTopology.GetAdjacentEdgeCount Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IN > INetTopology Interface > INetTopology.GetAdjacentEdgeCount Method
ArcGIS Developer Help

INetTopology.GetAdjacentEdgeCount Method

Returns the number of edges adjacent to the specified junction.

[Visual Basic .NET]
Public Function GetAdjacentEdgeCount ( _
    ByVal AtJunctionEID As Integer _
) As Integer
[C#]
public int GetAdjacentEdgeCount (
    int AtJunctionEID
);
[C++]
HRESULT GetAdjacentEdgeCount(
  long AtJunctionEID
);
[C++]
Parameters
AtJunctionEID [in]

AtJunctionEID is a parameter of type long

Product Availability

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

Remarks

GetAdjacentEdgeCount returns the number of edges connect to the specified junction.  This property is often used in conjunction with GetAdjacentEdge or GetAdjacentEdges to loop through the edges connected to a junction.

See Also

INetTopology Interface