DataGridViewCell.KeyPressUnsharesRow(KeyPressEventArgs, Int32) メソッド

定義

行内のセルにフォーカスがあるときにキーが押された場合に、行を非共有にするかどうかを示します。

protected:
 virtual bool KeyPressUnsharesRow(System::Windows::Forms::KeyPressEventArgs ^ e, int rowIndex);
protected virtual bool KeyPressUnsharesRow (System.Windows.Forms.KeyPressEventArgs e, int rowIndex);
abstract member KeyPressUnsharesRow : System.Windows.Forms.KeyPressEventArgs * int -> bool
override this.KeyPressUnsharesRow : System.Windows.Forms.KeyPressEventArgs * int -> bool
Protected Overridable Function KeyPressUnsharesRow (e As KeyPressEventArgs, rowIndex As Integer) As Boolean

パラメーター

e
KeyPressEventArgs

イベント データを格納している KeyPressEventArgs

rowIndex
Int32

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

戻り値

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

注釈

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

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

適用対象

こちらもご覧ください