DataGridViewAutoSizeRowMode Enumeration
Defines values for specifying how the height of a row is adjusted.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Member name | Description | |
|---|---|---|
| AllCells | The row height adjusts to fit the contents of all cells in the row, including the header cell. | |
| AllCellsExceptHeader | The row height adjusts to fit the contents of all cells in the row, excluding the header cell. | |
| RowHeader | The row height adjusts to fit the contents of the row header. |
The DataGridView control can resize its rows based on the preferred height of each row. The preferred row height is the minimum height required to display the largest cell value in that row. Different size modes let you indicate which cells are used to calculate the new heights (either header cells or non-header cells) and whether to resize all rows or only the rows that are currently displayed. Resizing a subset of rows is useful to avoid a performance penalty when working with many rows of data.
Content-based automatic resizing prevents users from adjusting row heights with the mouse.
This enumeration is used by the DataGridView control AutoResizeRow method.
For more information about sizing modes, see Sizing Options in the Windows Forms DataGridView Control.
The following code example resizes the third row in the control to fit the contents of its nonheader cells. This code example is part of a larger example provided in How to: Programmatically Resize Cells to Fit Content in the Windows Forms DataGridView Control.
Available since 2.0