ASPxCalendar.PickerViewCellPrepared Event
In This Article
Occurs on the server side before a cell in the calendar picker view has been rendered.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event EventHandler<CalendarPickerViewCellPreparedEventArgs> PickerViewCellPrepared
#Event Data
The PickerViewCellPrepared event's data class is CalendarPickerViewCellPreparedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Cell | Provides access to the processed cell. |
Date |
Gets the cell processed in the calendar.
Inherited from Calendar |
Is |
Returns the value that specifies whether the processed cell doesn’t refer to the current period (month, year, century).
Inherited from Calendar |
Is |
Gets whether the cell has been selected.
Inherited from Calendar |
Text |
Gets the text control contained within a processed cell. |
#Remarks
Use the event’s parameters to get additional information about the processed cell in the calendar picker view. The calendar picker view is specified by the ASPxCalendar.PickerType property.
See Also