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


ICadastralFabricSelection.SelectCadastralFeatures Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IC > ICadastralFabricSelection Interface > ICadastralFabricSelection.SelectCadastralFeatures Method
ArcGIS Developer Help

ICadastralFabricSelection.SelectCadastralFeatures Method

Select cadastral features based upon the search criteria.

[Visual Basic .NET]
Public Sub SelectCadastralFeatures ( _
    ByVal queryFilter As IQueryFilter, _
    ByVal CadastralFeature As esriCadastralFeature, _
    ByVal XORToExistingSelection As Boolean _
)
[C#]
public void SelectCadastralFeatures (
    IQueryFilter queryFilter,
    esriCadastralFeature CadastralFeature,
    bool XORToExistingSelection
);
[C++]
HRESULT SelectCadastralFeatures(
  IQueryFilter* queryFilter,
  esriCadastralFeature CadastralFeature,
  VARIANT_BOOL XORToExistingSelection
);
[C++]
Parameters
queryFilter [in]

queryFilter is a parameter of type IQueryFilter* CadastralFeature [in]
CadastralFeature is a parameter of type esriCadastralFeature XORToExistingSelection [in]
XORToExistingSelection is a parameter of type bool

Product Availability

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

Remarks

Select cadastral features based upon the search criteria.

The SelectCadastralFeatures method can be used to select cadastral features that meet the search criteria defined in the QueryFilter object. The CadastralFeature parameter will determine whether the fabric's control points or parcels will be selected. The AddToExistingSelection parameter determines whether the new selection will be added to the existing selection.

[C++]

HRESULT SelectCadastralFeatures(

IQueryFilter* QueryFilter,

esriCadastralFeature CadastralFeature,

VARIANT_BOOL AddToExistingSelection

);

See Also

ICadastralFabricSelection Interface