Click or drag to resize
KaxSchedulerReminderDismiss Event
Occurs when a reminder has been dismissed.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public event ReminderDismissEventHandler ReminderDismiss

Value

Type: Kettic.AspNet.ControlsReminderDismissEventHandler
Remarks

The event arguments contain:

  • The dismissed reminder
  • The original appointment with non-modified reminders
  • The modified appointment with updated reminders

The operation can be cancelled by setting the ReminderDismissEventArgs.Cancel property of ReminderDismissEventArgs to true. If the operation is not cancelled KaxScheduler will update the appointment.

Examples
void KaxScheduler1_ReminderDismiss(object sender, ReminderDismissEventArgs e)
{
    e.Cancel = true;
}
See Also