KaxSchedulerTimeSlotCreated Event |
Occurs when a time slot has been created.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic event TimeSlotCreatedEventHandler TimeSlotCreated
Public Event TimeSlotCreated As TimeSlotCreatedEventHandler
public:
event TimeSlotCreatedEventHandler^ TimeSlotCreated {
void add (TimeSlotCreatedEventHandler^ value);
void remove (TimeSlotCreatedEventHandler^ value);
}
member TimeSlotCreated : IEvent<TimeSlotCreatedEventHandler,
TimeSlotCreatedEventArgs>
Value
Type:
Kettic.AspNet.ControlsTimeSlotCreatedEventHandler
Remarks
You can use this event to make modifications to the time slots.
Examplesvoid KaxScheduler1_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
{
e.TimeSlot.CssClass = "holidayTimeSlot";
}
Sub KaxScheduler1_TimeSlotCreated(sender As Object, e As TimeSlotCreatedEventArgs)
e.TimeSlot.CssClass = "holidayTimeSlot"
End Sub
No 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