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


ICadastralFabricLayer.SearchCadastralFeatures Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (Carto)  

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,
  IFeatureIDSet** FeatureIDSet
);
[C++]

Parameters queryFilter [in]
queryFilter is a parameter of type IQueryFilter CadastralFeature [in]
CadastralFeature is a parameter of type esriCadastralFeature FeatureIDSet [out, retval]
FeatureIDSet is a parameter of type IFeatureIDSet

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

See Also

ICadastralFabricLayer Interface