TcxSchedulerReminders.OnSnoozeReminder Event
Fires when the AReminder reminder is about to be snoozed.
Declaration
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