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


In This Topic
    DoubleClickDate Event
    In This Topic
    Occurs when mouse double clicked on the button of calendar.
    Syntax
    'Declaration
     
    Public Event DoubleClickDate As ClickDateEventHandler
    'Usage
     
    Dim instance As GcDropDownCalendar
    Dim handler As ClickDateEventHandler
     
    AddHandler instance.DoubleClickDate, handler
    public event ClickDateEventHandler DoubleClickDate
    Event Data

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

    PropertyDescription
    Gets the clicked date.  
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    Remarks
    This event is raised when mouse double clicked on the button of calendar. When DisplayMode is greater than StartDisplayMode, mouse double clicked on the button will zoom in calendar which doesn't raise DoubleClickDate event.
    See Also