CalendarProperties.CellDisabledStyle Property
In This Article
Gets the style properties of the cells for which selection is disabled.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public CalendarElementStyle CellDisabledStyle { get; }
#Property Value
Type | Description |
---|---|
Calendar |
A Calendar |
#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