DataGridView.Item[] Propriété

Définition

Fournit un indexeur pour obtenir ou définir la cellule située à l'intersection de la ligne et de la colonne spécifiées.

Surcharges

Item[Int32, Int32]

Fournit un indexeur permettant d’obtenir ou de définir la cellule située à l’intersection de la colonne et de la ligne avec les index spécifiés.

Item[String, Int32]

Fournit un indexeur pour obtenir ou définir la cellule située à l’intersection de la ligne avec l’index spécifié et de la colonne avec le nom spécifié.

Item[Int32, Int32]

Fournit un indexeur permettant d’obtenir ou de définir la cellule située à l’intersection de la colonne et de la ligne avec les index spécifiés.

public:
 property System::Windows::Forms::DataGridViewCell ^ default[int, int] { System::Windows::Forms::DataGridViewCell ^ get(int columnIndex, int rowIndex); void set(int columnIndex, int rowIndex, System::Windows::Forms::DataGridViewCell ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewCell this[int columnIndex, int rowIndex] { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Item(int * int) : System.Windows.Forms.DataGridViewCell with get, set
Default Public Property Item(columnIndex As Integer, rowIndex As Integer) As DataGridViewCell

Paramètres

columnIndex
Int32

Index de la colonne contenant la cellule.

rowIndex
Int32

Index de la ligne contenant la cellule.

Valeur de propriété

DataGridViewCell

DataGridViewCell situé à l'emplacement spécifié.

Attributs

Exceptions

columnIndex est inférieur à 0 ou supérieur au nombre de colonnes dans le contrôle moins 1.

  • ou - rowIndex est inférieur à 0 ou supérieur au nombre de lignes dans le contrôle moins 1.

Exemples

L’exemple de code suivant illustre l’utilisation de cet indexeur.

// Retrieve the cell value for the cell at column 3, row 7.
String testValue1 = (String)dataGridView1[3, 7].Value;

// Retrieve the cell value for the cell in the Name column at row 4.
String testValue2 = (String)dataGridView1["Name", 4].Value;
' Retrieve the cell value for the cell at column 3, row 7.
Dim testValue1 As String = CStr(dataGridView1(3, 7).Value)

' Retrieve the cell value for the cell in the Name column at row 4.
Dim testValue2 As String = CStr(dataGridView1("Name", 4).Value)

Remarques

Cet indexeur est une alternative à l’accès aux cellules via la Cells collection de la Rows collection.

Voir aussi

S’applique à

Item[String, Int32]

Fournit un indexeur pour obtenir ou définir la cellule située à l’intersection de la ligne avec l’index spécifié et de la colonne avec le nom spécifié.

public:
 property System::Windows::Forms::DataGridViewCell ^ default[System::String ^, int] { System::Windows::Forms::DataGridViewCell ^ get(System::String ^ columnName, int rowIndex); void set(System::String ^ columnName, int rowIndex, System::Windows::Forms::DataGridViewCell ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewCell this[string columnName, int rowIndex] { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Item(string * int) : System.Windows.Forms.DataGridViewCell with get, set
Default Public Property Item(columnName As String, rowIndex As Integer) As DataGridViewCell

Paramètres

columnName
String

Nom de la colonne contenant la cellule.

rowIndex
Int32

Index de la ligne contenant la cellule.

Valeur de propriété

DataGridViewCell

DataGridViewCell situé à l'emplacement spécifié.

Attributs

Exemples

L’exemple de code suivant illustre l’utilisation de cet indexeur.

// Retrieve the cell value for the cell at column 3, row 7.
String testValue1 = (String)dataGridView1[3, 7].Value;

// Retrieve the cell value for the cell in the Name column at row 4.
String testValue2 = (String)dataGridView1["Name", 4].Value;
' Retrieve the cell value for the cell at column 3, row 7.
Dim testValue1 As String = CStr(dataGridView1(3, 7).Value)

' Retrieve the cell value for the cell in the Name column at row 4.
Dim testValue2 As String = CStr(dataGridView1("Name", 4).Value)

Remarques

Cet indexeur est une alternative à l’accès aux cellules via la Cells collection de la Rows collection.

Voir aussi

S’applique à