ArcObjects Library Reference (Carto)  

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 VARIANT_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++]

See Also

ICadastralFabricSelection Interface