Skip to main content

TcxCustomSchedulerStorage.OnEventIntersect Event

Fires when AEvent1 and AEvent2 are about to be overlapped.

Declaration

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