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

CalendarProperties.CellOtherPeriodStyle Property

Gets the style properties of the cells that don’t refer to the current period (month, year, century).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public CalendarElementStyle CellOtherPeriodStyle { 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