DataGridViewCell.ContentDoubleClickUnsharesRow メソッド

定義

セルの内容がダブルクリックされたときに、セルの行の共有を解除するかどうかを示します。

protected:
 virtual bool ContentDoubleClickUnsharesRow(System::Windows::Forms::DataGridViewCellEventArgs ^ e);
protected virtual bool ContentDoubleClickUnsharesRow (System.Windows.Forms.DataGridViewCellEventArgs e);
abstract member ContentDoubleClickUnsharesRow : System.Windows.Forms.DataGridViewCellEventArgs -> bool
override this.ContentDoubleClickUnsharesRow : System.Windows.Forms.DataGridViewCellEventArgs -> bool
Protected Overridable Function ContentDoubleClickUnsharesRow (e As DataGridViewCellEventArgs) As Boolean

パラメーター

e
DataGridViewCellEventArgs

DataGridViewCellEventArgs メソッドに渡されたデータを格納している OnContentDoubleClick(DataGridViewCellEventArgs)

戻り値

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

注釈

メソッドは ContentDoubleClickUnsharesRow 、 メソッドの直前に OnContentDoubleClick 呼び出されます。 のOnContentDoubleClick呼び出しがセルの行の共有を解除する効果がある場合は、 を返すtrue必要があります。 それ以外の場合は、 を返す false必要があります。

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

適用対象

こちらもご覧ください