DataGridView::AutoResizeRowHeadersWidth Method (Int32, DataGridViewRowHeadersWidthSizeMode, Boolean, Boolean)
Adjusts the width of the row headers based on changes to the contents of the header in the specified row and using the specified size mode, optionally calculating the width with the expectation that the row and/or column header widths will subsequently be adjusted.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
protected: void AutoResizeRowHeadersWidth( int rowIndex, DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowHeight )
Parameters
- rowIndex
-
Type:
System::Int32
The index of the row containing the header with the changed content.
- rowHeadersWidthSizeMode
-
Type:
System.Windows.Forms::DataGridViewRowHeadersWidthSizeMode
One of the DataGridViewRowHeadersWidthSizeMode values.
- fixedColumnHeadersHeight
-
Type:
System::Boolean
true to calculate the new width based on the current height of the column headers; false to calculate the width with the expectation that the height of the column headers will also be adjusted.
- fixedRowHeight
-
Type:
System::Boolean
true to calculate the new width based on the current height of the specified row; false to calculate the width with the expectation that the row height will also be adjusted.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | rowIndex is not in the valid range of 0 to the number of rows minus 1. |
| ArgumentException | rowHeadersWidthSizeMode has the value EnableResizing or DisableResizing. |
| InvalidEnumArgumentException | rowHeadersWidthSizeMode is not a valid DataGridViewRowHeadersWidthSizeMode value. |
This method is useful if you want to control when the row headers resize if only the contents of the header in the specified row have changed as a result of user edits or changes to a bound data source. The width of the row headers is adjusted only once per method call if the content change requires it; if the contents of the row headers later change, the row headers will not automatically adjust. To set the row headers to automatically resize when their contents change, use the RowHeadersWidthSizeMode property.
This method lets you specify a sizing mode that calculates the new width based on values in a limited set of headers, such as those in displayed rows only. This improves performance when the control contains a large number of rows.
This overload is protected, and is designed to enable you to achieve ideal cell height-to-width ratios in a derived DataGridView class. If the fixedColumnHeadersHeight or fixedRowHeight parameters are false, the width of the row headers will be calculated with the expectation that you will call methods such as AutoResizeRows and AutoResizeColumnHeadersHeight next.
For more information about programmatic resizing, see Sizing Options in the Windows Forms DataGridView Control.
Available since 2.0