com.esri.arcgis.geodatabase
Interface esriSelectionType

All Superinterfaces:
Serializable

public interface esriSelectionType
extends Serializable

Selection Type.

Remarks

These enumerators are used to specify the type of SelectionSets returned by ITable::Select, IFeatureClass::Select, IFeatureLayer::Select.

Depending on the number of rows or features selected this option lets you define if the SelectionSet will store only IDs or a set of instantiated rows in memory.

esriSelectionTypeIDSet
The selection is always based on a persistent set of OIDs (e.g. logfiles for ArcSDE)

esriSelectionTypeSnapshot
The selection is always based on a set of in-memory rows (e.g. no logfile just in-memory IRow(s))

esriSelectionTypeHybrid
The selection itself decides how to manage its representation (e.g. it may morph between IDSet and Snapshot)

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriSelectionTypeHybrid
          Snapshot if small, else an ID Set.
static int esriSelectionTypeIDSet
          IDSet.
static int esriSelectionTypeSnapshot
          Snapshot.
 

Field Detail

esriSelectionTypeIDSet

static final int esriSelectionTypeIDSet
IDSet.

See Also:
Constant Field Values

esriSelectionTypeSnapshot

static final int esriSelectionTypeSnapshot
Snapshot.

See Also:
Constant Field Values

esriSelectionTypeHybrid

static final int esriSelectionTypeHybrid
Snapshot if small, else an ID Set.

See Also:
Constant Field Values