Data.DB.TFilterRecordEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
type
typedef
public
Data.DB.pas
Data.DB.hpp
Data.DB Data.DB

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