wpf-devexpress-dot-xpf-dot-grid-dot-columnbase-9fbb7e4d.md
Gets or sets a format that defines how to display rounded dates.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public string RoundDateDisplayFormat { get; set; }
Public Property RoundDateDisplayFormat As String
| Type | Description |
|---|---|
| String |
A format that defines how display rounded dates.
|
The RoundDateDisplayFormat is applied if the ColumnBase.RoundDateTimeForColumnFilter property value is true.
The following code sample shows how to specify the display format for rounded dates:
<dxg:GridControl ItemsSource="{Binding Items}" AutoGenerateColumns="AddNew">
<dxg:GridColumn FieldName="Date" RoundDateDisplayFormat="d">
<dxg:GridColumn.EditSettings>
<dxe:DateEditSettings DisplayFormat="u"/>
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridControl.View>
<dxg:TableView ColumnFilterPopupMode="ExcelSmart"/>
</dxg:GridControl.View>
</dxg:GridControl>
See Also