ArcObjects Library Reference (GeoDatabase)  

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(
  long* pcHardDataEdges,
  long* pcSoftDataEdges,
  long* 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