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


ITinAdvanced2.QueryBeginEndNodeIndices 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.QueryBeginEndNodeIndices Method
ArcGIS Developer Help

ITinAdvanced2.QueryBeginEndNodeIndices Method

Gets begin and end nodes of the specified edge.

[Visual Basic .NET]
Public Sub QueryBeginEndNodeIndices ( _
    ByVal edgeIndex As Integer, _
    ByRef pBegin As Integer, _
    ByRef pEnd As Integer _
)
[C#]
public void QueryBeginEndNodeIndices (
    int edgeIndex,
    ref int pBegin,
    ref int pEnd
);
[C++]
HRESULT QueryBeginEndNodeIndices(
  long edgeIndex,
  System.Int32* pBegin,
  System.Int32* pEnd
);
[C++]
Parameters
edgeIndex [in]

edgeIndex is a parameter of type long pBegin [out]
pBegin is a parameter of type long* pEnd [out]
pEnd is a parameter of type long*

Product Availability

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

Description

Returns the indices of the from and to nodes of the specified edge.

Note that edges in a triangle are ordered clockwise.

See Also

ITinAdvanced2 Interface