DataGridView.UpdateRowHeightInfo(Int32, Boolean) Method

Definition

Forces the specified row or rows to update their height information.

public void UpdateRowHeightInfo (int rowIndex, bool updateToEnd);

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.

Applies to

Produkt Versjoner
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also