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


IFeatureLayerDefinition.DefinitionSelectionSet Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IF > IFeatureLayerDefinition Interface > IFeatureLayerDefinition.DefinitionSelectionSet Property
ArcGIS Developer Help

IFeatureLayerDefinition.DefinitionSelectionSet Property

The selection set that defines the subset of features in a selection layer.

[Visual Basic .NET]
Public ReadOnly Property DefinitionSelectionSet As ISelectionSet
[C#]
public ISelectionSet DefinitionSelectionSet {get;}
[C++]
HRESULT get_DefinitionSelectionSet(
  ISelectionSet** SelectionSet
);
[C++]
Parameters
SelectionSet [out, retval]

SelectionSet is a parameter of type ISelectionSet**

Product Availability

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

Remarks

You can use the DefintionSelectionSet property to get the selection set that was used to define the new layer created by the IFeatureLayerDefintion::CreateSelectionLayer method. Note, before calling CreateSelectionLayer, the selection set returned by DefintionSelectionSet will be Nothing. Therefore, you can only use this property after you have called the CreateSelectionLayer method.

See Also

IFeatureLayerDefinition Interface