AD
Administrator
Syncfusion Team
September 18, 2005 10:52 AM UTC
Hi Kov,
Instead of setting the e.Style.Text / e.Style.CellValue in your QueryCellFormattedText event handler, please try setting the "e.Text" followed by e.Handled to true.
private void Model_QueryCellFormattedText(object sender, Syncfusion.Windows.Forms.Grid.GridCellTextEventArgs e)
{
e.Text = " ";
e.Handled = true;
}
Best regards,
Jay N