FireDAC.Comp.DataSet.TFDDataSet.FilteredData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FilteredData: IFDDataSetReference read GetFilteredData;

C++

__property _di_IFDDataSetReference FilteredData = {read=GetFilteredData};

Properties

Type Visibility Source Unit Parent
property public
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

Description

Represents the currently visible dataset data.

The FilteredData property value represents the set of records accessible through the navigation interface of the dataset (the visible records). This set is formed by applying filters, ranges, indexes, and so on, and can be assigned to other datasets using the Data property.

The property value references the IFDDataSet interface. It is reference-counted and the application does not need to explicitly free it. If the application keeps the interface reference using a variable or a field, then the reference must be released before one of following events occurs:

See Also