DataGridView.UpdateRowHeightInfo(Int32, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Forces the specified row or rows to update their height information.
public:
void UpdateRowHeightInfo(int rowIndex, bool updateToEnd);
public void UpdateRowHeightInfo(int rowIndex, bool updateToEnd);
member this.UpdateRowHeightInfo : int * bool -> unit
Public Sub UpdateRowHeightInfo (rowIndex As Integer, updateToEnd As Boolean)
Parameters
- rowIndex
- Int32
The zero-based index of the first row to update.
- updateToEnd
- Boolean
true to update the specified row and all subsequent rows.
Exceptions
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.
Remarks
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.