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.OnEventIntersect Event

In This Article

Fires when AEvent1 and AEvent2 are about to be overlapped.

#Declaration

Delphi
property OnEventIntersect: TcxSchedulerEventIntersectEvent read; write;

#Remarks

The OnEventIntersect event only fires if the scheduler’s EventOperations.Intersection property is set to False (which means that user event intersection is not allowed).

Implement the OnEventIntersect event handler, to allow certain types of user events to be intersected.

Sender specifies the storage.

AEvent1 and AEvent2 specify user events to be overlapped.

Allow specifies whether intersection is allowed. Set Allow to True, to allow user event intersection.

See Also