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


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

ITinAdvanced2.QueryTriangleNodeIndices Method

Gets the three nodes of the specified triangle (clockwise).

[Visual Basic .NET]
Public Sub QueryTriangleNodeIndices ( _
    ByVal triangleIndex As Integer, _
    ByRef pA As Integer, _
    ByRef pB As Integer, _
    ByRef pC As Integer _
)
[C#]
public void QueryTriangleNodeIndices (
    int triangleIndex,
    ref int pA,
    ref int pB,
    ref int pC
);
[C++]
HRESULT QueryTriangleNodeIndices(
  long triangleIndex,
  System.Int32* pA,
  System.Int32* pB,
  System.Int32* pC
);
[C++]
Parameters
triangleIndex [in]

triangleIndex is a parameter of type long pA [out]
pA is a parameter of type long* pB [out]
pB is a parameter of type long* pC [out]
pC is a parameter of type long*

Product Availability

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

Description

Returns the indices of the three nodes that comprise the specified triangle.

See Also

ITinAdvanced2 Interface