DataGridView.SelectedRows Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la collection des lignes sélectionnées par l’utilisateur.
public:
property System::Windows::Forms::DataGridViewSelectedRowCollection ^ SelectedRows { System::Windows::Forms::DataGridViewSelectedRowCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewSelectedRowCollection SelectedRows { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectedRows : System.Windows.Forms.DataGridViewSelectedRowCollection
Public ReadOnly Property SelectedRows As DataGridViewSelectedRowCollection
Valeur de propriété
DataGridViewSelectedRowCollection qui représente les lignes sélectionnées par l'utilisateur.
- Attributs
Exemples
L’exemple de code suivant montre comment utiliser la SelectedRows propriété dans l’événement UserDeletingRow . Dans cet exemple, si la première ligne est contenue dans la SelectedRows collection, la suppression est annulée. Cet exemple fait partie d’un exemple plus grand disponible dans l’événement SelectionChanged .
private void DataGridView1_UserDeletingRow(object sender,
DataGridViewRowCancelEventArgs e)
{
DataGridViewRow startingBalanceRow = DataGridView1.Rows[0];
// Check if the Starting Balance row is included in the selected rows
if (DataGridView1.SelectedRows.Contains(startingBalanceRow))
{
// Do not allow the user to delete the Starting Balance row.
MessageBox.Show("Cannot delete Starting Balance row!");
// Cancel the deletion if the Starting Balance row is included.
e.Cancel = true;
}
}
Private Sub UserDeletingRow(ByVal sender As Object, _
ByVal e As DataGridViewRowCancelEventArgs) _
Handles DataGridView1.UserDeletingRow
Dim startingBalanceRow As DataGridViewRow = DataGridView1.Rows(0)
' Check if the starting balance row is included in the selected rows
If DataGridView1.SelectedRows.Contains(startingBalanceRow) Then
' Do not allow the user to delete the Starting Balance row.
MessageBox.Show("Cannot delete Starting Balance row!")
' Cancel the deletion if the Starting Balance row is included.
e.Cancel = True
End If
End Sub
Remarques
La SelectionMode propriété doit être définie sur FullRowSelect ou RowHeaderSelect pour que la SelectedRows propriété soit remplie avec les lignes sélectionnées.
Cette propriété contient une instantané en lecture seule de la sélection au moment où elle est référencée. Si vous conservez une copie de cette collection, elle peut différer de l’état réel et ultérieur DataGridView dans lequel l’utilisateur a peut-être modifié la sélection. Vous ne devez donc pas utiliser une copie de la collection.
Pour sélectionner une ligne par programmation, définissez sa Selected propriété sur true
.