| layout | post |
|---|---|
| title | Resizing possible in additional row headers in GridControl| Syncfusion |
| description | How to make resizing possible in additional row headers of Syncfusion Windows Forms Grid control, and more. |
| platform | windowsforms |
| control | Grid |
| documentation | ug |
This page explains How to make resizing possible in additional row headers of a GridControl and GridDataBoundGrid and more details.
The resizing of additional row headers on the grid can be made possible by setting ResizeColsBehavior flag to Grid.GridResizeCellsBehavior.InsideGrid.
{% tabs %} {% highlight c# %}
grid.ResizeColsBehavior = (((Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.ResizeSingle | Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.InsideGrid) | Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.OutlineHeaders) | Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.OutlineBounds);
{% endhighlight %}
{% highlight vb %}
grid.ResizeColsBehavior = (((Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.ResizeSingle | Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.InsideGrid) | Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.OutlineHeaders) Dim Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior.OutlineBounds) As |
{% endhighlight %} {% endtabs %}