Data.DB.TFilterRecordEvent

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
type
typedef
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: Data.DB

Delphi

TFilterRecordEvent = procedure(DataSet: TDataSet;
var Accept: Boolean) of object;

C++

typedef void __fastcall (__closure *TFilterRecordEvent)(TDataSet* DataSet, bool &Accept);

Description

Event handler that issues an OnFilterRecord event.

TFilterRecordEvent is an event handler that issues an OnFilterRecord event.

Accept returns True if the current record meets the filter condition, or False if the current record should not be exposed.

See Also