Skip to main content

RepositoryItemTimeEdit.TimeFormat Property

OBSOLETE

Use the EditMask property instead.

Gets or sets a value specifying the format of the value displayed by a TimeEdit.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[DefaultValue(TimeFormat.HourMinSec)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Use the EditMask property instead.")]
public TimeFormat TimeFormat { get; set; }

Property Value

Type Default Description
TimeFormat HourMinSec

A TimeFormat enumeration member specifying the format of the time value.

Available values:

Name Description
HourMinSec

Hours, minutes and seconds are displayed within the time editor.

TimeFormat - h_m_s

HourMin

Hours and minutes are displayed within the time editor.

TimeFormat - h_m

Hour

Hours are displayed within the time editor.

TimeFormat - h

See Also