DataGridViewCell.RowIndex 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 l'index de la ligne parente de la cellule.
public:
property int RowIndex { int get(); };
[System.ComponentModel.Browsable(false)]
public int RowIndex { get; }
[<System.ComponentModel.Browsable(false)>]
member this.RowIndex : int
Public ReadOnly Property RowIndex As Integer
Valeur de propriété
Index de la ligne qui contient la cellule ; -1 s'il n'y a aucune ligne propriétaire.
- Attributs
Exemples
L’exemple de code suivant illustre l’utilisation de cette propriété.
private void getCurrentCellButton_Click(object sender, System.EventArgs e)
{
string msg = String.Format("Row: {0}, Column: {1}",
dataGridView1.CurrentCell.RowIndex,
dataGridView1.CurrentCell.ColumnIndex);
MessageBox.Show(msg, "Current Cell");
}
Private Sub getCurrentCellButton_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles getCurrentCellButton.Click
Dim msg As String = String.Format("Row: {0}, Column: {1}", _
dataGridView1.CurrentCell.RowIndex, _
dataGridView1.CurrentCell.ColumnIndex)
MessageBox.Show(msg, "Current Cell")
End Sub
Remarques
Lorsque la RowIndex propriété retourne -1, la cellule est un en-tête de colonne ou la ligne de la cellule est partagée.
Pour plus d’informations sur le partage de lignes, consultez Meilleures pratiques pour la mise à l’échelle du contrôle DataGridView Windows Forms.