'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.
Property | Description |
---|---|
Month | Gets the month. |
MonthSlot | Gets or sets the visual element shown in the month slot. |
Year | Gets the year. |
See Also