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 Forms DataGridView 控件的最佳做法

適用於

另請參閱