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

In This Article

Fires when AEvent is about to be deleted from storage and memory.

#Declaration

Delphi
property OnEventDeleted: TcxSchedulerNotificationEvent read; write;

#Remarks

Implement the OnEventDeleted event handler to provide custom behavior when AEvent is about to be deleted.

Sender specifies the TcxCustomSchedulerStorage storage.

AEvent specifies the TcxSchedulerEvent to be deleted.

AHandled specifies whether the default behavior is required. Set AHandled to True, to prevent default code execution. Note that this parameter is ignored, if AEvent is a recurring user event‘s occurrence (the TcxSchedulerEvent.EventType property is etOccurrence or etCustom).

See Also