# Time Formatting

Format the time values of the TimeEditor control in Blazor Edition. Learn more about the time formatting in Blazor documentation.

## Content



TimeEditor allows you to set the time format for displaying the time in a specific format. You can use [Format](/componentone/api/blazor/online-blazor/dotnet-api/C1.Blazor.DateTimeEditors/C1.Blazor.DateTimeEditors.C1TimeEditor.Format.html) property of the [C1TimeEditor](/componentone/api/blazor/online-blazor/dotnet-api/C1.Blazor.DateTimeEditors/C1.Blazor.DateTimeEditors.C1TimeEditor.html) class to set the standard time format for the TimeEditor control. The following code showcases the use of Format property to set the "hh:mm" time format to display time in the control.

```csharp
<C1TimeEditor Value="DateTime.Now" Format="hh:mm"></C1TimeEditor>
```