ComponentOne Xamarin.iOS
MonthSlotLoading Event


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

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

PropertyDescription
Gets the month.  
Gets or sets the visual element shown in the month slot.  
Gets the year.  
See Also