'Declaration
Public Event HeaderLoading As EventHandler(Of CalendarHeaderLoadingEventArgs)
'Usage
Dim instance As C1Calendar Dim handler As EventHandler(Of CalendarHeaderLoadingEventArgs) AddHandler instance.HeaderLoading, handler
public event EventHandler<CalendarHeaderLoadingEventArgs> HeaderLoading
Event Data
The event handler receives an argument of type CalendarHeaderLoadingEventArgs containing data related to this event. The following CalendarHeaderLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Date | The displaying date. |
HeaderSlot | The header to be shown in the calendar. |
ViewMode | The view mode of the calendar. |
See Also