Click or drag to resize
KaxSchedulerUpdateAppointment Method (Appointment)
Updates the specified appointment and persists the changes 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 void UpdateAppointment(
	Appointment appointmentToUpdate
)

Parameters

appointmentToUpdate
Type: Kettic.AspNet.ControlsAppointment
The appointment to update.
Remarks
This method can be used, along with PrepareToEdit to create and persist a recurrence exceptions.
Examples
Appointment occurrence = KaxScheduler1.Appointments[0];
Appointment recurrenceException = KaxScheduler1.PrepareToEdit(occurrence, false);

recurrenceException.Subject = "This is a recurrence exception";

KaxScheduler1.UpdateAppointment(recurrenceException);
See Also