maui-devexpress-dot-maui-dot-datagrid-dot-gridcolumn.md
Gets or sets the pattern used to format cell values of the column. This is a bindable property.
Namespace : DevExpress.Maui.DataGrid
Assembly : DevExpress.Maui.DataGrid.dll
NuGet Package : DevExpress.Maui.DataGrid
public string DisplayFormat { get; set; }
| Type | Description |
|---|---|
| String |
The text pattern for cell values.
|
Use the DisplayFormat property to specify the format for numeric and date/time values displayed in grid columns. To compose format patterns, you can use standard or custom format specifiers. See the following page for more information:
This example shows how to use standard format strings to format column values.
Format values in the Price column as a currency amount, and use the Short Date Pattern to format values in the Date column.
<dxg:DataGridView ItemsSource="{Binding Orders}">
<dxg:DataGridView.Columns>
<!-- ... -->
<dxg:NumberColumn FieldName="Price" DisplayFormat="C2"/>
<dxg:DateColumn FieldName="Date" DisplayFormat="d"/>
<!-- ... -->
</dxg:DataGridView.Columns>
</dxg:DataGridView>
See Also