Skip to main content
A newer version of this page is available. .
Tab

CalendarProperties.CellSelectedStyle Property

Gets the style properties of the selected cells.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public CalendarElementStyle CellSelectedStyle { get; }

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>

ASPxCalendar-Styles

See Also