Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / ClickDateEventHandler Delegate
The object where the event handler is attached.
The event data.


In This Topic
    ClickDateEventHandler Delegate
    In This Topic
    Represents the method that will handle the GcDropDownCalendar.ClickDate event and the GcDropDownCalendar.DoubleClickDate event of the GcDropDownCalendar.
    Syntax
    'Declaration
     
    Public Delegate Sub ClickDateEventHandler( _
       ByVal sender As Object, _
       ByVal e As ClickDateEventArgs _
    ) 
    'Usage
     
    Dim instance As New ClickDateEventHandler(AddressOf HandlerMethod)
    public delegate void ClickDateEventHandler( 
       object sender,
       ClickDateEventArgs e
    )

    Parameters

    sender
    The object where the event handler is attached.
    e
    The event data.
    See Also