ArcObjects Library Reference (GeoDatabase)  

INetworkTurn.QueryAtJunction Method

Queries the at-junction of this network turn.

[Visual Basic .NET]
Public Sub QueryAtJunction ( _
    ByVal Junction As INetworkJunction _
)
[C#]
public void QueryAtJunction (
    INetworkJunction Junction
);
[C++]
HRESULT QueryAtJunction(
  INetworkJunction* Junction
);
[C++]

Parameters

Junction [in]

  Junction is a parameter of type INetworkJunction

Product Availability

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

Remarks

The QueryAtJunction method retrieves the junction element that anchors this turn element.  The anchor junction of a turn element is the junction connecting the last two edges that the turn traverses.

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

See Also

INetworkTurn Interface