Click or drag to resize
KaxSchedulerOccurrenceDelete Event
Occurs when an occurrence is about to be removed.

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 OccurrenceDeleteEventHandler OccurrenceDelete

Value

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