FireDAC.Comp.DataSet.TFDIndex.Filter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Filter: String read FFilter write SetFilter;

C++

__property System::UnicodeString Filter = {read=FFilter, write=SetFilter};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDIndex

Description

Specifies a view filter.

Use the Filter property to specify a view filter.

When Filter is applied to the view, only the records that meet a filter's conditions are available to an application. Filter contains the string that describes the filter condition. See Writing Expressions for details on the expression syntax.

To specify the sort order for a view, use the Expression or Fields property. To set up the filtering, use the FilterOptions property.

See Also