Articles in this section
Category / Section

How to maintain display text in cell based on a date value in WinForms(SfDataGrid)?

1 min read

In WinForms DataGrid (SfDataGrid),We can change the display text of cell based on a specific value by using
SfDataGrid_QueryCellStyle event. Here modified the display text of the cell in the date column, based on a specific date value.

public Form1()
{
    InitializeComponent();
    sfDataGrid1.QueryCellStyle += SfDataGrid1_QueryCellStyle;
}

private void SfDataGrid1_QueryCellStyle(object sender, Syncfusion.WinForms.DataGrid.Events.QueryCellStyleEventArgs e)
{
    if (e.Column.MappingName == "Date")
    {
        if (e.DisplayText == "1/1/2000")
            e.DisplayText = "N/C";
    } 
}

Please refer the output

Datagrid.png

Conclusion
​I hope you enjoyed learning on how to maintain display text in cell based on a date value(SfDataGrid).
You can refer to our WinForms DataGrid Control feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied