aspnet-devexpress-dot-web-dot-aspxtimeedit-fc043f39.md
Gets or sets the edit format for a time editor’s value.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(EditFormat.Time)]
public EditFormat EditFormat { get; set; }
<DefaultValue(EditFormat.Time)>
Public Property EditFormat As EditFormat
| Type | Default | Description |
|---|---|---|
| EditFormat | Time |
A EditFormat enumeration value that specifies the edit format.
|
Available values:
| Name | Description |
|---|---|
| Date |
The edited date is represented using a format pattern for a short date value (which is associated with the ‘d’ format character).
| | DateTime |
The edited date is represented using a format pattern for a short date and short time value (which is associated with the ‘g’ format character).
| | Time |
The edited date is represented using a format pattern for a short time value (which is associated with the ‘t’ format character).
| | Custom |
The edited date is represented using a custom format pattern specified via the ASPxDateEdit.EditFormatString (DateEditProperties.EditFormatString) property.
|
This property is a wrapper of the TimeEditProperties.EditFormat property.
See Also