Skip to main content

RepositoryItemTimeSpanEdit.MaxHours Property

Gets or sets the maximum number of hours of the time interval.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[DefaultValue(24)]
[DXCategory("Behavior")]
[EditorBrowsable(EditorBrowsableState.Never)]
public int MaxHours { get; set; }

Property Value

Type Default Description
Int32 24

An integer value that specifies the maximum number of hours of the time interval.

Remarks

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

image

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.

image

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