AD
Administrator
Syncfusion Team
April 20, 2004 03:53 AM UTC
Are you using version 2.0? If yes, check out the DrawCellDisplayText event. It is called from any cell type before text is drawn and lets you replace the default drawing of text with your DrawString call.
You could for example call
e.Graphics.DrawString(displayText, e.Style.GdipFont, new SolidBrush(e.Style.TextColor), e.TextRectangle);
and
e.Cancel = true;
The displayText can be the text and you can modify it before it gets drawn.
Another alternative that also work with 1.6 would be to handle the QueryCellFormattedText.
In that event handler you could replace the text to be displayed in the cell before it gets drawn.
Stefan