Méthode Add

Ajoute un élément à la fin de l'objet ArrayList.

Syntaxe

Object.Add (Element)

Arguments :

  • Object : requis. Toujours le nom de l'objet ArrayList.

  • Element : requis. Elément à ajouter à la fin de ArrayList.

Valeur renvoyée

Index ArrayList auquel l'élément a été ajouté.

Remarques

Les exemples suivants illustrent l'utilisation de la méthode Add.

Exemple 1 :

'Create ArrayList Object
Dim Obj
Set Obj = CreateObject("System.Collections.ArrayList")

'Add Elements to the ArrayList Object
Dim Index
Index = Obj.Add(10)
'Output: 0
Index = Obj.Add(40)
'Output: 1
Index = Obj.Add(20)
'Output: 2
'Output: Obj contains 10, 40, 20

Exemple 2 :

'Create ArrayList Object
Dim Obj
Set Obj = CreateObject("System.Collections.ArrayList")

'Add Elements to the end of the ArrayList Object
Dim Index
Index = Obj.Add("Banana")
'Output: 0
Index = Obj.Add("Apple")
'Output: 1
Index = Obj.Add("Grapes")
'Output: 2
'Output: Obj contains "Banana", "Apple", "Grapes"