DataGridView.UpdateRowHeightInfo Method (Int32, Boolean)
.NET Framework (current version)
Forces the specified row or rows to update their height information.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- rowIndex
-
Type:
System.Int32
The zero-based index of the first row to update.
- updateToEnd
-
Type:
System.Boolean
true to update the specified row and all subsequent rows.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | rowIndex is less than 0 and updateToEnd is true. -or- rowIndex is less than -1 and updateToEnd is false. -or- rowIndex is greater than the highest row index in the Rows collection. |
This method is useful when you maintain row heights yourself using handlers for the RowHeightInfoNeeded and RowHeightInfoPushed events. Call this method whenever you change the stored row heights outside of a RowHeightInfoPushed event handler. This will force the DataGridView control to retrieve the updated height information through the RowHeightInfoNeeded event handler.
.NET Framework
Available since 2.0
Available since 2.0
Show: