AD
Administrator
Syncfusion Team
February 25, 2005 09:15 AM UTC
There are two properties of the cell style that might affect the area for visible text. They are style.TextMargins and style.BorderMargins. SO, these setting may ''restrict'' the area available for text.
But the behavior you are seeing may also have to do with GDI+ and some of its features like antialiasing. If this is the case you can use the DrawCellDisplayText event and tell the grid to draw the text using GDI instead.
private void gridDataBoundGrid1_DrawCellDisplayText(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs e)
{
e.Cancel = GridGdiPaint.Instance.DrawText(e.Graphics, e.DisplayText, e.TextRectangle, e.Style);
}