RadControls for ASP.NET AJAX
The AppointmentDataBound event occurs when an appointment has been added to the Appointments
collection from the data source.
AppointmentDataBound has two parameters:
You can use this event to make adjustments to the appointments as they are loaded.
Example
CopyC#
protected void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)
{
e.Appointment.Start = e.Appointment.Start.AddHours(1);
}
CopyVB.NET
Protected Sub RadScheduler1_AppointmentDataBound(ByVal sender As Object, ByVal e As SchedulerEventArgs) Handles RadScheduler1.AppointmentDataBound
e.Appointment.Start = e.Appointment.Start.AddHours(1)
End Sub
See Also