This topic covers the specific events exposed by the RadCalendar control.
The RadCalendar control raises the following specific events:
- SelectedValueChanging - occurs before the SelectedValue property gets changed. The event handler receives two arguments:
-
The sender argument contains the RadCalendar instance. This argument is of type object, but can be cast to the RadCalendar type.
-
A ValueChangingEventArgs<object> object.
- SelectedValueChanged - occurs after the SelectedValue property has been changed. The event handler receives two arguments:
-
The sender argument contains the RadCalendar instance. This argument is of type object, but can be cast to the RadCalendar
type.
-
A ValueChangedEventArgs< object > object.
- DisplayDateChanging - occurs before the DisplayDate property gets changed. The event handler receives two arguments:
-
The sender argument contains the RadCalendar instance. This argument is of type object, but can be cast to the RadCalendar
type.
-
A ValueChangingEventArgs<object> object.
- DisplayDateChanged - occurs after the DisplayDate property has been changed. The event handler receives two arguments:
-
The sender argument contains the RadCalendar instance. This argument is of type object, but can be cast to the RadCalendar
type.
-
A ValueChangedEventArgs< object > object.