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

BootstrapCalendarProperties.MinDate Property

Gets or sets the minimum date allowed to be entered into the editor by an end-user.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[DefaultValue(typeof(DateTime), "")]
public DateTime MinDate { get; set; }

Property Value

Type Default Description
DateTime String.Empty

A DateTime object that specifies the editor’s minimum allowed date.

Remarks

Use the MinDate and BootstrapCalendarProperties.MaxDate properties to limit user input to dates falling within a specific range. The MinDate property specifies the low limit of the allowed date range. Dates which are out of the specified range cannot be entered into the calendar editor by end-users.

Note that programmatic manipulation on the calendar editor’s value isn’t limited by the MinDate and BootstrapCalendarProperties.MaxDate property values.

Note

The MinDate property synchronizes its value with the calendar’s BootstrapCalendar.MinDate property.

See Also