Skip to main content

TcxCustomSchedulerStorage.OnFilterEvent Event

Fires every time the AEvent instance is about to be loaded into the scheduler cache for displaying by the scheduler.

Declaration

property OnFilterEvent: TcxSchedulerFilterEventEvent read; write;

Remarks

Implement the OnFilterEvent event handler to load only the user events that meet certain criteria.

The Sender parameter specifies the scheduler control;

The AEvent parameter specifies the user event to be loaded into the cache;

The Accept parameter controls whether or not the AEvent instance will be loaded into the cache. If the AEvent doesn’t match the required condition, set the Accept parameter to False to prevent that instance from loading. The default value of the Accept parameter is True.

See Also