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


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

INetworkJunction.QueryPoint Method

Queries the point object corresponding to this network junction element.

[Visual Basic .NET]
Public Sub QueryPoint ( _
    ByVal point As IPoint _
)
[C#]
public void QueryPoint (
    IPoint point
);
[C++]
HRESULT QueryPoint(
  IPoint* point
);
[C++]
Parameters
point [in]

point is a parameter of type IPoint*

Product Availability

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

Remarks

The QueryPoint method retrieves the Point geometry associated with this junction element.

This method requires an instantiated Point object to be passed in as a parameter.

On an SDC network dataset, QueryPoint returns an empty Point object for junction elements that do not connect to any edges (i.e., have an EdgeCount of zero).

See Also

INetworkJunction Interface