Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcDropDownCalendar Class / DisplayModeChanged Event


In This Topic
    DisplayModeChanged Event
    In This Topic
    Occurs when the DisplayMode property changed.
    Syntax
    'Declaration
     
    Public Event DisplayModeChanged As CalendarModeChangedEventHandler
    'Usage
     
    Dim instance As GcDropDownCalendar
    Dim handler As CalendarModeChangedEventHandler
     
    AddHandler instance.DisplayModeChanged, handler
    public event CalendarModeChangedEventHandler DisplayModeChanged
    Event Data

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

    PropertyDescription
    (Inherited from System.Windows.RoutedEventArgs)
    Gets the new mode of the GcDropDownCalendar.  
    Gets the previous mode of the GcDropDownCalendar.  
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    Remarks
    This event is raised if the DisplayMode property changed, and it can be changed not only by user interaction but also by binding as well as other set values.
    See Also