Calendar for WPF | ComponentOne
C1.WPF.Calendar Namespace / C1Calendar Class / MonthSlotLoading Event

In This Topic
    MonthSlotLoading Event
    In This Topic
    Occurs when an element representing a month is about to be created.
    Syntax
    'Declaration
     
    
    Public Event MonthSlotLoading As EventHandler(Of CalendarMonthSlotLoadingEventArgs)
    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 slot raising the event. (Inherited from C1.WPF.Calendar.CalendarSlotLoadingEventArgs<CalendarMonthSlotInfo>)
    Gets or sets the visual element shown in the day slot. (Inherited from C1.WPF.Calendar.CalendarSlotLoadingEventArgs<CalendarMonthSlotInfo>)
    Gets the date information for the slot. (Inherited from C1.WPF.Calendar.CalendarSlotLoadingEventArgs<CalendarMonthSlotInfo>)
    Gets the year.  
    See Also