TAstaDataset.Filtered
Applies to
TAstaDataset
Declaration
property
Filtered;
Description
Use Filtered to limit the records that are available to the application -- use with OnFilterRecord
event. Be certain to call refresh after changing the state of the Filtered property.
with AstaDataSet1
do begin
Filtered := not
Filtered;
Refresh;
end;