DataGridViewCellCollection.Add(DataGridViewCell) Méthode
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.
Ajoute une cellule à la collection.
public:
virtual int Add(System::Windows::Forms::DataGridViewCell ^ dataGridViewCell);
public virtual int Add (System.Windows.Forms.DataGridViewCell dataGridViewCell);
abstract member Add : System.Windows.Forms.DataGridViewCell -> int
override this.Add : System.Windows.Forms.DataGridViewCell -> int
Public Overridable Function Add (dataGridViewCell As DataGridViewCell) As Integer
Paramètres
- dataGridViewCell
- DataGridViewCell
DataGridViewCell à ajouter à la collection.
Retours
La position à laquelle le nouvel élément doit être inséré.
Exceptions
La ligne qui possède ce DataGridViewCellCollection appartient déjà à un contrôle DataGridView.
- ou -
dataGridViewCell
appartient déjà à un DataGridViewRow.
Remarques
Utilisez cette méthode pour remplir un avec des DataGridViewRow cellules avant d’ajouter la ligne à un DataGridView contrôle. Une fois que vous avez ajouté la ligne à un contrôle, le nombre de cellules qu’il contient correspond toujours au nombre de colonnes dans le contrôle, de sorte que cette méthode n’est plus utile.