CalendarProperties.CellStyle Property
Gets the style properties of the cells.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
CalendarElementStyle | A CalendarElementStyle object containing the style settings. |
Remarks
<dx:ASPxDateEdit runat="server" ID="dateEdit2" PickerType="Months">
<CalendarProperties>
<CellDisabledStyle BackColor="Red" />
<CellOtherPeriodStyle BackColor="YellowGreen" />
<CellOutOfRangeStyle BackColor="DarkBlue" />
<CellSelectedStyle BackColor="Aqua" />
<CellStyle BackColor="RosyBrown" />
</CalendarProperties>
</dx:ASPxDateEdit>
See Also