AD
Administrator
Syncfusion Team
September 24, 2003 08:40 AM UTC
If you want to autosize the columns to fit the text, you can call the ResizeToFit member of the ColWidths class. You can pass in any range you want to resize. This code does the whole table.
grid.ColWidths.ResizeToFit(GridRangeInfo.Table(), GridResizeToFitOptions.IncludeHeaders);
- Or -
you could pass in only the visible cells range (
this.gridDataBoundGrid1.ViewLayout.VisibleCellsRange)
You might also need to set gridDataBoundGrid1.AllowResizeToFit = False.
If AllowResizeToFit is true, then the grid tries to autosize the columns based on the with of their header texts. This might interfere with the explicit sizing that you are trying to do.
Stefan