New to Telerik UI for WinForms? Download free 30-day trial

Resizing Rows

RadVirtualGrid exposes an API allowing resizing of its rows. In order to utilize it we need to set the AllowRowResize property to true.

this.radVirtualGrid1.AllowRowResize = true;

Me.RadVirtualGrid1.AllowRowResize = True

The grid rows can be resized by end users simply by positioning the mouse over the horizontal grid line and dragging it to a desired size.

Figure 1: Mouse Resizing

WinForms RadVirtualGrid Mouse Resizing

See this topic for more information on how the columns can be resized programmatically.

See Also

In this article