Click or drag to resize
KaxSchedulerRecurrenceExceptionCreated Event
Occurs when an appointment that represents a recurrence exception is about to be created.

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 RecurrenceExceptionCreatedEventHandler RecurrenceExceptionCreated

Value

Type: Kettic.AspNet.ControlsRecurrenceExceptionCreatedEventHandler
Remarks
The RecurrenceExceptionCreatedEventArgs hold a reference both to the master and the exception appointment. The operation can be cancelled by setting the Cancel property of RecurrenceExceptionCreatedEventArgs to true.
Examples
void KaxScheduler1_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)
{
    e.Cancel = true;
}
See Also