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


IRelQueryTableName.SrcQueryFilter Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IRelQueryTableName Interface > IRelQueryTableName.SrcQueryFilter Property
ArcGIS Developer Help

IRelQueryTableName.SrcQueryFilter Property

A QueryFilter applied to a cursor opened from the RelQueryTable.

[Visual Basic .NET]
Public Property SrcQueryFilter As IQueryFilter
[C#]
public IQueryFilter SrcQueryFilter {get; set;}
[C++]
HRESULT get_SrcQueryFilter(
  IQueryFilter* QueryFilter
);
[C++]
HRESULT putref_SrcQueryFilter(
  IQueryFilter** QueryFilter
);
[C++]
Parameters
QueryFilter [in]

QueryFilter is a parameter of type IQueryFilter* QueryFilter [out, retval]
QueryFilter is a parameter of type IQueryFilter**

Product Availability

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

Remarks

You can further define the data that will be returned by a RelQueryTable by applying a QueryFilter. The WhereClause of SrcQueryFilter is added to the WhereClause of the QueryFilter specified when you use the ITable::Search method using the and operator. The SubFields of SrcQueryFilter define which fields will include data when a cursor is opened. The other fields are included but will be empty.

See Also

IRelQueryTableName Interface