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


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

INetworkEdge.QueryEdgeInOtherDirection Method

Queries the network edge element corresponding to the reverse traversal of this network edge element.

[Visual Basic .NET]
Public Sub QueryEdgeInOtherDirection ( _
    ByVal Edge As INetworkEdge _
)
[C#]
public void QueryEdgeInOtherDirection (
    INetworkEdge Edge
);
[C++]
HRESULT QueryEdgeInOtherDirection(
  INetworkEdge* Edge
);
[C++]
Parameters
Edge [in]

Edge is a parameter of type INetworkEdge*

Product Availability

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

Remarks

The QueryEdgeInOtherDirection method retrieves the edge element in the opposite direction of travel as this edge.

This method requires an instantiated NetworkEdge object to be passed in as a parameter.  You can create an empty NetworkEdge object by using the INetworkQuery::CreateNetworkElement method.

See Also

INetworkEdge Interface