How to set DataGridView row height?

  • Thread starter Thread starter Jyrki
  • Start date Start date
J

Jyrki

Hello,

I have a small problem in regards to DataGridView component.

I would like to know how to set row heights in a DataGridView.
Sofar, I have used command:

DataGridView1.AutoSizeRows(DataGridViewAutoSizeRowsMode.HeaderAndColumnsAllRows)

(source MSDN artice: Introducing a New Data Grid, MacDonald)

The above works nicely as long as the column widths are set properly.
My ideal row height would be two rows of visible text in certain
column. Therefore, I was wondering whether there is a way to do that
same by assigning a fixed number to a row height property in
DataGridView? By doing that I would avoid using the code above.

Best Regards

Jyrki Mizaras
Software Developer
 
Back
Top