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

DateEditSettings.MaxValue Property

Gets or sets the editor’s maximum value. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.Settings

Assembly: DevExpress.Xpf.Core.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public DateTime? MaxValue { get; set; }

Property Value

Type Description
Nullable<DateTime>

A DateTime value that specifies the maximum allowed date.

Remarks

An end-user cannot select a value from the drop-down calendar if it is greater than the maximum value. An end-user can also change the date by typing it in the text box. In this instance, if a new value exceeds the maximum allowed value, an error icon is displayed, indicating that the specified value is not valid.

The minimum allowed date is specified using the DateEditSettings.MinValue property.

See Also