Resize a Column in a MultiColumnComboBox

I have tried this: GridRangeInfo range = GridRangeInfo.Col(2); mccbStringType.ListBox.Grid.ColWidths.ResizeToFit(range,GridResizeToFitOptions.IncludeCellsWithinCoveredRange); but is does nothing. I want it to resize to fit the text in the cells and would like to shrink the size of another column. Please help.

1 Reply

AD Administrator Syncfusion Team December 20, 2004 08:06 PM UTC

You need to set gridListControl1.AutoSizeColumns = false;. Otherwise, the GridListControl will autosize things according to the visible cells and this will step on any other sizing you may try to do.

Loader.
Up arrow icon