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

ASPxCalendar.DayDisabledStyle Property

Gets the style properties of the days for which selection is disabled.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public CalendarElementStyle DayDisabledStyle { get; }

Property Value

Type Description
CalendarElementStyle

A CalendarElementStyle object containing the style settings.

Remarks

The calendar control allows you to disable the selection of specific days by using the client-side ASPxClientCalendar.CustomDisabledDate event, server-side ASPxCalendar.CustomDisabledDate event, and the ASPxCalendar.DisabledDates collection.

Use the DayDisabledStyle property to access style settings defining the appearance of disabled days in the calendar.

Note that the DayDisabledStyle property does not affect the style of the days that don’t belong to the date range allowed for selection (limited by the ASPxCalendar.MinDate and ASPxCalendar.MaxDate properties). To specify the style settings for such days, use the ASPxCalendar.DayOutOfRangeStyle property.

Note

This property is a wrapper of the CalendarProperties.DayDisabledStyle property.

See Also