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

RepositoryItemTimeSpanEdit.MinDays Property

Gets or sets the minimum number of days in the time interval.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DefaultValue(0)]
[DXCategory("Behavior")]
public int MinDays { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that specifies the minimum number of days in the time interval.

Remarks

The editor allows users to edit hours, minutes, and seconds in the edit box.

The actual format depends or the current culture settings (see LongTimePattern). Use the Mask property to customize the input mask. The editor supports mask specifiers for days (‘d’), hours (‘H’), minutes (‘m’), seconds (‘s’), and second fractions (‘f’). See the examples below.

using DevExpress.XtraEditors.Mask;

timeSpanEdit1.Properties.Mask.MaskType = MaskType.DateTime;
timeSpanEdit1.Properties.EditMask = "d.HH.mm.ss";
// Enables editing milliseconds in the drop-down panel.
timeSpanEdit1.Properties.AllowEditMilliseconds = true;
timeSpanEdit1.Properties.EditMask = "HH-mm-ss-fff";
timeSpanEdit1.Properties.EditMask = "d/HH/mm/ss/fff";

The default drop-down panel allows users to edit days, hours, minutes, and seconds.

Tiles in the drop-down panel do not depend on the input mask. Use the following properties to show/hide specific tiles in the drop-down panel:

The following properties allow you to specify extreme values that the user can enter in the text box and drop-down panel:

Note

These properties are not in effect if the editor uses a time-span input mask (the TimeSpanEdit.Properties.Mask.MaskType property is set to TimeSpan or TimeSpanAdvancingCaret).

See Also