2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
Avoid the text cutoff while border margin using in gridProblem: When the border margin size is more than the text size, the text is cut off on display. The following image shows the text cut off. Figure 1: Text cut off Solution: To avoid this problem of the text being cut off, use the Font.Unit property in the QueryCellStyleInfo event, and set the value to GraphicsUnit.World. C# grid.QueryCellStyleInfo+=new GridTableCellStyleInfoEventHandler(grid_QueryCellStyleInfo); e.Style.Font.Unit = GraphicsUnit.World; VB AddHandler grid.QueryCellStyleInfo, AddressOf grid_QueryCellStyleInfo e.Style.Font.Unit = GraphicsUnit.World After applying the properties, the Grid is displayed as follows. Figure 2: Grid with applied properties |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.