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


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

ITinAdvanced2.GetNodeSourceCounts Method

Returns the number of nodes with respect to different sources.

[Visual Basic .NET]
Public Sub GetNodeSourceCounts ( _
    ByRef pcOriginal As Integer, _
    ByRef pcSuper As Integer, _
    ByRef pcDensified As Integer, _
    ByRef pcIntersection As Integer, _
    ByRef pcUnknown As Integer _
)
[C#]
public void GetNodeSourceCounts (
    ref int pcOriginal,
    ref int pcSuper,
    ref int pcDensified,
    ref int pcIntersection,
    ref int pcUnknown
);
[C++]
HRESULT GetNodeSourceCounts(
  System.Int32* pcOriginal,
  System.Int32* pcSuper,
  System.Int32* pcDensified,
  System.Int32* pcIntersection,
  System.Int32* pcUnknown
);
[C++]
Parameters
pcOriginal [out]

pcOriginal is a parameter of type long* pcSuper [out]
pcSuper is a parameter of type long* pcDensified [out]
pcDensified is a parameter of type long* pcIntersection [out]
pcIntersection is a parameter of type long* pcUnknown [out]
pcUnknown is a parameter of type long*

Product Availability

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

Description

Returns the total number of nodes in the TIN for each source type. The different types include original, densified, intersection, supernode, and unknown.

TINs do not yet persist node source information. It is only maintained while the TIN is is edit mode. This means after a TIN has been saved to disk, all nodes, except for super nodes, become unknown.

See also: ITinAdvanced2.GetNodeSource, ITinNode2.Source

See Also

ITinAdvanced2 Interface