Row sizing

I have a GridControl for which RowHeaders and ColHeaders are both false. Can I set things up so that the columns can be resized by dragging the cell border (like the visual studio property grid)? Thanks!

1 Reply

AD Administrator Syncfusion Team January 27, 2005 09:38 AM UTC

Make sure the InsideGrid flag is set in grid.ResizeColsBehavior and the grid.ResizeRowsBehavior properties. You can do this in the designer or from code. // add the inside flag to the current settings of ResizeColsBehavior this.gridControl1.ResizeColsBehavior |= GridResizeCellsBehavior.InsideGrid;

Loader.
Up arrow icon