public event EventHandler<CalendarDaySlotLoadingEventArgs> DaySlotLoading
Event Data
The event handler receives an argument of type CalendarDaySlotLoadingEventArgs containing data related to this event. The following CalendarDaySlotLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Date | Gets the date information for the current day slot. |
DaySlot | Gets or sets the visual element shown in the day slot. |
IsAdjacentDay | Gets whether or not the day is an adjacent day in the calendar. |
Slot | Gets the slot raising the event. (Inherited from C1.Maui.Calendar.CalendarSlotLoadingEventArgs<CalendarDaySlotInfo>) |
SlotContent | Gets or sets the visual element shown in the day slot. (Inherited from C1.Maui.Calendar.CalendarSlotLoadingEventArgs<CalendarDaySlotInfo>) |
SlotInfo | Gets the date information for the slot. (Inherited from C1.Maui.Calendar.CalendarSlotLoadingEventArgs<CalendarDaySlotInfo>) |
See Also