0

I'm looking for a way to allow the user resize a single row height (during runtime off course) using the mouse, just like a table in MS Excel or Word. I can size the the columns can be re-sized when the grid have headers enabled.

I'm using devexpress 14.1 Winforms (not WPF) GridControl (framework 4 if it matters).

Any ideas would be great.

Ehud Grand
  • 3,501
  • 4
  • 33
  • 52

1 Answers1

0

By design, the GridView does not allow this. If you are looking to resize ALL the rows, you can run the designer for the GridView and look under OptionsCustomization. There will be a property called AllowRowSizing....set this to True.

There is a 'workaround' though, which can be found here and here, which should get you your desired results.

Robert
  • 1,696
  • 3
  • 36
  • 70