'Declaration Public Event ClickDate As ClickDateEventHandler
'Usage Dim instance As DropDownCalendar Dim handler As ClickDateEventHandler AddHandler instance.ClickDate, handler
public event ClickDateEventHandler ClickDate
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.
Property | Description |
---|---|
Date | Gets the clicked date. |
Remarks
This event is raised if a date area is clicked.
See Also