This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IN > INetTopologyEditGEN Interface > INetTopologyEditGEN.GetAdjacentEdges Method (ArcObjects .NET 10.4 SDK) |
Returns the network element IDs of all the edges adjacent to the specified junction.
[Visual Basic .NET] Public Sub GetAdjacentEdges ( _ ByVal AtJunctionEID As Integer, _ ByRef adjacentEdges As Int32[]&, _ ByRef reverseOrientation As Boolean[]& _ )
[C#] public void GetAdjacentEdges ( int AtJunctionEID, ref Int32[]& adjacentEdges, ref Boolean[]& reverseOrientation );
[C++]
HRESULT GetAdjacentEdges(
long AtJunctionEID,
adjacentEdges* adjacentEdges,
reverseOrientation* reverseOrientation
);
[C++]
Parameters AtJunctionEID [in] AtJunctionEID is a parameter of type long adjacentEdges [in, out] adjacentEdges is a parameter of type reverseOrientation [in, out] reverseOrientation is a parameter of type
GetAdjacentEdges returns an array of the edges connected to the specified junction, along with their orientation.
INetTopologyEditGEN::GetAdjacentEdges is marked as hidden, since its functionality is similar to IForwardStarGEN::QueryAdjacentEdges(). Clients should use QueryAdjacentEdges in lieu of using INetTopologyEditGEN::GetAdjacentEdges.