ArcObjects Library Reference (GeoDatabase)  

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 [out, retval]

  QueryFilter is a parameter of type IQueryFilter

QueryFilter [in]

  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