DataGridViewCell.MouseEnterUnsharesRow(Int32) メソッド

定義

マウス ポインターを行のセル上に移動したときに行の共有を解除するかどうかを示します。

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

パラメーター

rowIndex
Int32

セルの親行のインデックス。

戻り値

行を非共有にする場合は true。それ以外の場合は false。 基本クラスの DataGridViewCell は、常に false を返します。

注釈

メソッドは MouseEnterUnsharesRow 、 メソッドの直前に OnMouseEnter 呼び出されます。 派生クラスでは、 のOnMouseEnter呼び出しがセルを含む行の共有を解除する効果がある場合は、 を返すtrue必要があります。 それ以外の場合は、 を返す false必要があります。

行の共有の詳細については、「Windows フォーム DataGridView コントロールを拡張するための推奨される手順」を参照してください。

適用対象

こちらもご覧ください