'Declaration
Public Event YearSlotLoading As EventHandler(Of CalendarYearSlotLoadingEventArgs)
'Usage
Dim instance As C1Calendar Dim handler As EventHandler(Of CalendarYearSlotLoadingEventArgs) AddHandler instance.YearSlotLoading, handler
public event EventHandler<CalendarYearSlotLoadingEventArgs> YearSlotLoading
Event Data
The event handler receives an argument of type CalendarYearSlotLoadingEventArgs containing data related to this event. The following CalendarYearSlotLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
IsAdjacentYear | Gets whether or not the year is an adjacent year in the calendar. |
Year | Gets the year. |
YearSlot | Gets or sets the visual element shown in the year slot. |
See Also