DataGridView.UpdateRowHeightInfo(Int32, Boolean) 方法

定义

强制指定的一行或多行更新其高度信息。

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)

参数

rowIndex
Int32

要更新的第一行的索引(从零开始)。

updateToEnd
Boolean

如果要更新指定的行及其后面的所有行,则为 true

例外

rowIndex 小于 0 且 updateToEndtrue

- 或 -

rowIndex 小于 -1 且 updateToEndfalse

- 或 -

rowIndex 大于 Rows 集合中的最高行索引。

注解

使用 和 RowHeightInfoPushed 事件的处理程序自行维护行高时,RowHeightInfoNeeded此方法非常有用。 每当在事件处理程序外部更改存储的 RowHeightInfoPushed 行高时,调用此方法。 这将强制 DataGridView 控件通过 事件处理程序检索更新的高度 RowHeightInfoNeeded 信息。

适用于

另请参阅