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


INALocatorAgent3.QueryLocationByRowEx Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > NetworkAnalyst > ESRI.ArcGIS.NetworkAnalyst > Interfaces > IN > INALocatorAgent3 Interface > INALocatorAgent3.QueryLocationByRowEx Method
ArcGIS Developer Help

INALocatorAgent3.QueryLocationByRowEx Method

Find a network location from a row and curb approach.

[Visual Basic .NET]
Public Sub QueryLocationByRowEx ( _
    ByVal row As IRow, _
    ByVal tolerance As Double, _
    ByVal curbApproach As esriNACurbApproachType, _
    ByRef Location As INALocation, _
    ByRef distanceFromRow As Double _
)
[C#]
public void QueryLocationByRowEx (
    IRow row,
    double tolerance,
    esriNACurbApproachType curbApproach,
    ref INALocation Location,
    ref double distanceFromRow
);
[C++]
HRESULT QueryLocationByRowEx(
  IRow* row,
  double tolerance,
  esriNACurbApproachType curbApproach,
  INALocation** Location,
  System.Double* distanceFromRow
);
[C++]
Parameters
row [in]

row is a parameter of type IRow* tolerance [in]
tolerance is a parameter of type double curbApproach [in]
curbApproach is a parameter of type esriNACurbApproachType Location [in, out]
Location is a parameter of type INALocation** distanceFromRow [in, out]
distanceFromRow is a parameter of type double*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Network Analyst Extension.

Remarks

QueryLocationByRowEx extends QueryLocationByRow by adding a CurbApproach parameter. 

If, in the INALocator calling this agent, ExcludeRestrictedElements is set to true and CacheRestrictedElements has been called, then there is the possibility that a network edge is only traversable in one direction.  In that case, the CurbApproach setting could render a location as unreachable.  For example, if the along direction on an edge is restricted, and the location being queried would place the returned NALocation on the left side of the edge, then it is not possible to reach the stop with a vehicle requiring a CurbApproach of left side.  QueryLocationByRowEx, in the above example, would switch the side of edge of the returned NALocation to right side, thereby allowing the NALocation to be reachable by vehicles with a CurbApproach requirement of left side.

See Also

INALocatorAgent3 Interface