Skip to main content

DateEdit.MaxValue Property

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

Namespace: DevExpress.Xpf.Editors

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

#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 dropdwn 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 DateEdit.MinValue property. To specify the editor's current value, use the DateEdit.DateTime property.

#Examples

The following example shows how to set the date editor's current, maximum and minimum values.

<dxe:DateEdit DateTime="11/12/2009" MaxValue="12/31/2010" MinValue="01/01/2008"/>
See Also