DataGridViewCell.MouseLeaveUnsharesRow(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指示當滑鼠指標離開某列時,該列是否共用。
protected:
virtual bool MouseLeaveUnsharesRow(int rowIndex);
protected virtual bool MouseLeaveUnsharesRow (int rowIndex);
abstract member MouseLeaveUnsharesRow : int -> bool
override this.MouseLeaveUnsharesRow : int -> bool
Protected Overridable Function MouseLeaveUnsharesRow (rowIndex As Integer) As Boolean
參數
- rowIndex
- Int32
儲存格的父資料列索引。
傳回
如果會取消共用資料列則為 true
,否則為 false
。 基底 DataGridViewCell 類別永遠會傳回 false
。
備註
方法 MouseLeaveUnsharesRow 會在方法之前 OnMouseLeave 呼叫。 在衍生類別中,如果的呼叫OnMouseLeave具有取消共用包含儲存格之資料列的效果,它就必須傳回 true
。 否則,它應該會傳回 false
。
如需數據列共用的詳細資訊,請參閱調整 Windows Forms DataGridView 控件的最佳做法。
適用於
另請參閱
- DataGridView
- MouseClickUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseDoubleClickUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseDownUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseEnterUnsharesRow(Int32)
- OnMouseLeave(Int32)
- MouseMoveUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseUpUnsharesRow(DataGridViewCellMouseEventArgs)
- 縮放 Windows Form DataGridView 控制項的最佳作法