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


ITinNode.QueryAsPoint Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITinNode Interface > ITinNode.QueryAsPoint Method
ArcGIS Developer Help

ITinNode.QueryAsPoint Method

Sets the node equal to a point.

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

pPoint is a parameter of type IPoint*

Product Availability

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

Description

Writes the X, Y, and Z values of the node to an existing, pre-instantiated, Point object. In some cases, such as in loops, it's faster to reuse and write to an existing Point object rather than to create a new one each iteration.

See Also

ITinNode Interface