[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Record filtering event handler prototype
Source position: db.pas line 1340
type TFilterRecordEvent = procedure( |
DataSet: TDataSet; |
var Accept: Boolean |
) of object; |
DataSet |
|
Dataset that triggered the event |
Accept |
|
Set to indicate whether the current record should be shown or not. |
TFilterRecordEvent is the prototype for the TDataset.OnFilterRecord event handler. The Dataset parameter indicates which dataset triggered the event, and the Accept parameter must be set to true if the current record should be shown, False should be used when the record should be hidden.
|
Event triggered to filter records. |