ArcObjects Library Reference (GeoDatabase)  

ITinSelection.SelectAll Method

Selects all elements of the specified element type in the TIN.

[Visual Basic .NET]
Public Sub SelectAll ( _
    ByVal Type As esriTinElementType, _
    ByVal bDataElementsOnly As Boolean _
)
[C#]
public void SelectAll (
    esriTinElementType Type,
    bool bDataElementsOnly
);
[C++]
HRESULT SelectAll(
  esriTinElementType Type,
  VARIANT_BOOL bDataElementsOnly
);
[C++]

Parameters

Type [in]

  Type is a parameter of type esriTinElementType

bDataElementsOnly [in]   bDataElementsOnly is a parameter of type VARIANT_BOOL

Product Availability

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

Description

If bDataElementsOnly is True then the selection bit for non-data elements is left unchanged. Any previously selected non-data elements will remain selected. If you don't like this call ClearSelection before SelectAll.

See Also

ITinSelection Interface