DataGridViewCell.KeyPressUnsharesRow(KeyPressEventArgs, Int32) Metodo

Definizione

Indica se verrà annullata la condivisione della riga quando viene premuto un tasto mentre è attiva una cella nella riga.

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

Parametri

e
KeyPressEventArgs

Oggetto KeyPressEventArgs che contiene i dati dell'evento.

rowIndex
Int32

Indice della riga padre della cella.

Restituisce

true se verrà annullata la condivisione della riga; in caso contrario, false. La classe base DataGridViewCell restituisce sempre false.

Commenti

Il KeyPressUnsharesRow metodo viene chiamato subito prima del OnKeyPress metodo . Nelle classi derivate, deve restituire true se la chiamata a OnKeyPress ha l'effetto di annullare ilsharing della riga contenente la cella. In caso contrario, deve restituire false.

Per altre informazioni sulla condivisione delle righe, vedere Procedure consigliate per il ridimensionamento del controllo DataGridView Windows Forms.

Si applica a

Vedi anche