We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Truncating Cell Values

Hi I''ve noticed that cell values appear to be truncated about a letter too soon - so that even when the cell is wide enough to display the entire cell value, often the last letter is truncated. Is there any cell padding property etc which might be causing this? Thanks, Sue

1 Reply

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); }

Loader.
Live Chat Icon For mobile
Up arrow icon