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

ColumnBase.RoundDateDisplayFormat Property

Gets or sets a format that defines how to display rounded dates.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.Core.dll

Declaration

public string RoundDateDisplayFormat { get; set; }

Property Value

Type Description
String

A format that defines how display rounded dates.

Remarks

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