ArcObjects Library Reference (GeoDatabase)  

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,
  long* pBegin,
  long* 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