DataGridViewAutoSizeRowsMode Enumeration
Assembly: System.Windows.Forms (in system.windows.forms.dll)
| Member name | Description | |
|---|---|---|
| AllCells | The row heights adjust to fit the contents of all cells in the rows, including header cells. | |
| AllCellsExceptHeaders | The row heights adjust to fit the contents of all cells in the rows, excluding header cells. | |
| AllHeaders | The row heights adjust to fit the contents of the row header. | |
| DisplayedCells | The row heights adjust to fit the contents of all cells in rows currently displayed onscreen, including header cells. | |
| DisplayedCellsExceptHeaders | The row heights adjust to fit the contents of all cells in rows currently displayed onscreen, excluding header cells. | |
| DisplayedHeaders | The row heights adjust to fit the contents of the row headers currently displayed onscreen. | |
| None | The row heights do not automatically adjust. |
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 nonheader 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 AutoSizeRowsMode property and AutoResizeRows method.
For more information about sizing modes, see Sizing Options in the Windows Forms DataGridView Control.
The following code example sets rows to automatically resize their height whenever cell contents change. The new row height is determined from the contents of all rows and columns. This code example is part of a larger example provided in How to: Automatically Resize Cells When Content Changes in the Windows Forms DataGridView Control.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
System.Windows.Forms NamespaceDataGridView Class
DataGridView.AutoSizeRowsMode Property
System.Windows.Forms.DataGridView.AutoResizeRows
Other Resources
Sizing Options in the Windows Forms DataGridView ControlHow to: Automatically Resize Cells When Content Changes in the Windows Forms DataGridView Control