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


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

ICadastralFabricLayer.SearchCadastralFeatures Method

Creates a FeatureIDSet based upon the search criteria.

[Visual Basic .NET]
Public Function SearchCadastralFeatures ( _
    ByVal queryFilter As IQueryFilter, _
    ByVal CadastralFeature As esriCadastralFeature _
) As IFeatureIDSet
[C#]
public IFeatureIDSet SearchCadastralFeatures (
    IQueryFilter queryFilter,
    esriCadastralFeature CadastralFeature
);
[C++]
HRESULT SearchCadastralFeatures(
  IQueryFilter* queryFilter,
  esriCadastralFeature CadastralFeature
);
[C++]
Parameters
queryFilter [in]

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

Product Availability

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

Remarks

Creates a FeatureIDSet based upon the search criteria.

The SearchCadastralFeatures method can be used to retrieve a set of feature IDs for the cadastral features that meet the search criteria defined in the QueryFilter object. The CadastralFeature parameter will determine whether the feature IDs of the fabric's control points or parcels will be retrieved. The IFeatureIDSet object returned by this method can be used to populate the properties of a CadastralJob or to select features in the cadastral fabric layer.

[C++]

HRESULT SearchCadastralFeatures(

IQueryFilter*QueryFilter,

esriCadastralFeature CadastralFeature,

IFeatureIDSet** FeatureIDSet

);

See Also

ICadastralFabricLayer Interface