| KaxSchedulerRecurrenceExceptionCreated Event |
Occurs when an appointment that represents a recurrence exception is about to be created.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic event RecurrenceExceptionCreatedEventHandler RecurrenceExceptionCreated
Public Event RecurrenceExceptionCreated As RecurrenceExceptionCreatedEventHandler
public:
event RecurrenceExceptionCreatedEventHandler^ RecurrenceExceptionCreated {
void add (RecurrenceExceptionCreatedEventHandler^ value);
void remove (RecurrenceExceptionCreatedEventHandler^ value);
}member RecurrenceExceptionCreated : IEvent<RecurrenceExceptionCreatedEventHandler,
RecurrenceExceptionCreatedEventArgs>
Value
Type:
Kettic.AspNet.ControlsRecurrenceExceptionCreatedEventHandler
Remarks
Examplesvoid KaxScheduler1_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)
{
e.Cancel = true;
}Sub KaxScheduler1_RecurrenceExceptionCreated(sender As Object, e As RecurrenceExceptionCreatedEventArgs)
e.Cancel = true
End SubNo code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also