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

TcxSchedulerReminders.OnDismissReminder Event

In This Article

Fires when the AReminder reminder is about to be dismissed.

#Declaration

Delphi
property OnDismissReminder: TcxSchedulerReminderEvent read; write;

#Remarks

Implement the OnDismissReminder event handler to provide custom behavior before the AReminder is deleted from the associated user event instance (see the TcxSchedulerReminder.Event property) and as a consequence from the TcxSchedulerReminders collection.

The Sender parameter specifies the TcxSchedulerReminders collection which contains the AReminder instance;

The AReminder parameter specifies the reminder instance, which will be dismissed;

The AHandled parameter specifies whether the default behavior is required when the event handler has finished executing. Assign the AHandled parameter a value of True to prevent the default behavior from being executed when the OnDismissReminder event handler exits.

See Also