New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

RecurrenceExceptionCreated

The RecurrenceExceptionCreated event occurs when the user creates an exception in a recurrent series. RecurrenceExceptionCreated has two parameters:

  • sender is the scheduler control.

  • e is an object of type RecurrenceExceptionCreatedEventArgs. It has four properties:- Appointment- the master appointment;- ExceptionAppointment- the newly created exception appointment;- OccurenceAppointment- the original occurrencebefore the exception was created;- Cancel is a boolean value that lets you prevent the creation of the exception;

Example


protected void RadScheduler1_RecurrenceExceptionCreated(object sender, Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs e)
{
    Response.Write("An exception with subject: " + e.ExceptionAppointment.Subject + " was created");
} 


Protected Sub RadScheduler1_RecurrenceExceptionCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs)
    Response.Write("An exception with subject: " + e.ExceptionAppointment.Subject + " was created")
End Sub

See Also

In this article