Click or drag to resize
KaxSchedulerAppointmentUpdate Event
Occurs when an appointment is about to be updated through the provider.

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 AppointmentUpdateEventHandler AppointmentUpdate

Value

Type: Kettic.AspNet.ControlsAppointmentUpdateEventHandler
Remarks
The AppointmentUpdateEventArgs hold a reference both to the original and the modified appointment. Any modifications on the original appointments are discarded. The update operation can be cancelled by setting the AppointmentUpdateEventArgs.Cancel property of AppointmentUpdateEventArgs to true.
Examples
void KaxScheduler1_AppointmentUpdate(object sender, AppointmentUpdateEventArgs e)
{
    e.ModifiedAppointment.End = e.ModifiedAppointment.End.AddHours(1);
}
See Also