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

RepositoryItemTimeSpanEdit.TimeEditStyle Property

Gets or sets whether users use spin buttons or tiles in a drop-down panel to edit the time span.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(TimeEditStyle.TouchUI)]
public override TimeEditStyle TimeEditStyle { get; set; }

Property Value

Type Default Description
TimeEditStyle **TouchUI**

A TimeEditStyle enumeration value that specifies how the time interval can be edited.

Available values:

Name Description
SpinButtons

The control displays spin buttons that allow users to edit the time (time span).

TimeEdit-TimeEditStyle-Spin

TouchUI

The control displays tiles in a drop-down panel that allow users to edit the time (time span).

TimeEdit-TimeEditStyle-TouchUI

Remarks

The TimeEditStyle property specifies how users modify the time span:

  • SpinButtons — spin buttons that are placed vertically one under another.

    To enable a horizontal spin button layout, use the SpinStyle property.

  • TouchUI — a touch drop-down panel with tiles.

    The drop-down panel supports both: the mouse and the keyboard.

Note

The TimeSpanEdit control always uses spin buttons if a time-span input mask is applied (the TimeSpanEdit.Properties.Mask.MaskType property is set to TimeSpan or TimeSpanAdvancingCaret).

See Also