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


INetworkQuery.QueryTurn Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (GeoDatabase)  

INetworkQuery.QueryTurn Method

Performs a network turn element query by element ID and populates the given turn element object.

[Visual Basic .NET]
Public Sub QueryTurn ( _
    ByVal EID As Integer, _
    ByVal Turn As INetworkTurn _
)
[C#]
public void QueryTurn (
    int EID,
    INetworkTurn Turn
);
[C++]
HRESULT QueryTurn(
  long EID,
  INetworkTurn* Turn
);
[C++]

Parameters EID [in] EID is a parameter of type long Turn [in]
Turn is a parameter of type INetworkTurn

Product Availability

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

Remarks

The QueryTurn method requires an instantiated NetworkTurn object to be passed in as a parameter.  You can create an empty NetworkTurn object by using the CreateNetworkElement method.

See Also

INetworkQuery Interface