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


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

    Parameters

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