ListView.ListViewItemCollection.IList.Add(Object) 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 un objet existant à la collection.
virtual int System.Collections.IList.Add(System::Object ^ item) = System::Collections::IList::Add;
int IList.Add (object item);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (item As Object) As Integer Implements IList.Add
Paramètres
- item
- Object
Objet à ajouter à la collection.
Retours
Index de base zéro indiquant l'emplacement de l'objet s'il a été ajouté à la collection ; sinon, -1.
Implémente
Remarques
Le item
paramètre peut être n’importe quel type. S’il item
s’agit d’un ListViewItem, il est ajouté au ListView.ListViewItemCollection. S’il s’agit item
d’un autre type, un nouveau ListViewItem est créé contenant la chaîne à partir de la ToString méthode de item
.