ComponentOne Xamarin.iOS
DayOfWeekSlotLoading Event


C1.iOS.Calendar Assembly > C1.iOS.Calendar Namespace > C1Calendar Class : DayOfWeekSlotLoading Event
Occurs when an element representing a day of week is about to be created.
Syntax
'Declaration
 
Public Event DayOfWeekSlotLoading As EventHandler(Of CalendarDayOfWeekSlotLoadingEventArgs)
'Usage
 
Dim instance As C1Calendar
Dim handler As EventHandler(Of CalendarDayOfWeekSlotLoadingEventArgs)
 
AddHandler instance.DayOfWeekSlotLoading, handler
public event EventHandler<CalendarDayOfWeekSlotLoadingEventArgs> DayOfWeekSlotLoading
Event Data

The event handler receives an argument of type CalendarDayOfWeekSlotLoadingEventArgs containing data related to this event. The following CalendarDayOfWeekSlotLoadingEventArgs properties provide information specific to this event.

PropertyDescription
Gets the day of week for the corresponding day of week slot.  
Gets or sets the visual element shown in the day of week slot.  
Gets whether the day is in the weekend.  
See Also