com.esri.arcgis.geodatabase
Interface esriSelectionOption

All Superinterfaces:
Serializable

public interface esriSelectionOption
extends Serializable

Selection Option.

Remarks

These enumerators are used in conjunction with a QueryFilter by ITable::Select, IFeatureClass::Select, IFeatureLayer::Select and define the content of the SelectionSet returned by these method.

esriSelectionOptionNormal
The selection is created based on the input query filter, all rows are selected if the query filter is null

esriSelectionOptionOnlyOne
The selection is created based on the input query filter, only the first row is selected

esriSelectionOptionEmpty
An empty selection is created

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriSelectionOptionEmpty
          Empty - an empty selection is created.
static int esriSelectionOptionNormal
          Normal - the selection is created based on the input query filter, all rows are selected if the query filter is null.
static int esriSelectionOptionOnlyOne
          Only One - the selection is created based on the input query filter, only the first row is selected.
 

Field Detail

esriSelectionOptionNormal

static final int esriSelectionOptionNormal
Normal - the selection is created based on the input query filter, all rows are selected if the query filter is null.

See Also:
Constant Field Values

esriSelectionOptionOnlyOne

static final int esriSelectionOptionOnlyOne
Only One - the selection is created based on the input query filter, only the first row is selected.

See Also:
Constant Field Values

esriSelectionOptionEmpty

static final int esriSelectionOptionEmpty
Empty - an empty selection is created.

See Also:
Constant Field Values