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


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

ITinAdvanced2.GetSpecialEdgeCounts Method

Returns the total number of special edges in the TIN.

[Visual Basic .NET]
Public Sub GetSpecialEdgeCounts ( _
    ByRef pcHardDataEdges As Integer, _
    ByRef pcSoftDataEdges As Integer, _
    ByRef pcTagValueDataEdges As Integer _
)
[C#]
public void GetSpecialEdgeCounts (
    ref int pcHardDataEdges,
    ref int pcSoftDataEdges,
    ref int pcTagValueDataEdges
);
[C++]
HRESULT GetSpecialEdgeCounts(
  System.Int32* pcHardDataEdges,
  System.Int32* pcSoftDataEdges,
  System.Int32* pcTagValueDataEdges
);
[C++]
Parameters
pcHardDataEdges [out]

pcHardDataEdges is a parameter of type long* pcSoftDataEdges [out]
pcSoftDataEdges is a parameter of type long* pcTagValueDataEdges [out]
pcTagValueDataEdges is a parameter of type long*

Product Availability

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

Description

Returns the number of hard, soft, and tagged edges.

Since edges can be both tagged and hard or soft, some overlap in the counts can exist.

At present, edge tags can only be assigned and used while a TIN's being edited. Edge tags do not get persisted so they are lost when a TIN is saved to disk.

See Also

ITinAdvanced2 Interface