FireDAC.Comp.DataSet.TFDDataSet.FilteredData
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:
- Closing the dataset.
- Changing the Filter, FilterChanges, FilterOptions, OnFilterRecord, Filtered property values.
- Changing the IndexName, IndexFieldNames, Indexes property values.
- Changing the current ranges.