Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomSchedulerStorage.OnFilterEvent Event

In This Article

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

#Declaration

Delphi
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