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

In This Article

Fires when the AReminder reminder is about to be snoozed.

#Declaration

Delphi
property OnSnoozeReminder: TcxSchedulerSnoozeReminderEvent read; write;

#Remarks

Implement the OnSnoozeReminder event handler to provide custom behavior before the AReminder reminder is snoozed.

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

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

The ASnoozeTime parameter specifies the time interval for which the AReminder‘s alert will be snoozed;

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 OnSnoozeReminder event handler exits.

See Also