DataGridViewCell.LeaveUnsharesRow(Int32, Boolean) 方法

定义

指示在焦点离开某行的单元格时,是否对该行取消共享。

protected:
 virtual bool LeaveUnsharesRow(int rowIndex, bool throughMouseClick);
protected virtual bool LeaveUnsharesRow (int rowIndex, bool throughMouseClick);
abstract member LeaveUnsharesRow : int * bool -> bool
override this.LeaveUnsharesRow : int * bool -> bool
Protected Overridable Function LeaveUnsharesRow (rowIndex As Integer, throughMouseClick As Boolean) As Boolean

参数

rowIndex
Int32

该单元格的父行索引。

throughMouseClick
Boolean

如果用户操作将焦点移至该单元格,则为 true;如果编程操作将焦点移至该单元格,则为 false

返回

如果不共享该行,则为 true;否则为 falseDataGridViewCell 基类总是返回 false

注解

方法 LeaveUnsharesRow 在 方法之前 OnLeave 调用。 如果对 OnLeave 的调用具有取消共享包含单元格的行的效果,则必须返回 true 。 否则,它应返回 false

有关行共享的详细信息,请参阅缩放 Windows 窗体 DataGridView 控件的最佳做法

适用于

另请参阅