Método Add

Agrega un elemento al final del objeto ArrayList.

Sintaxis

Object.Add (Element)

Argumentos:

  • Object: necesario. Siempre es el nombre del objeto ArrayList.

  • Element: necesario. Elemento que se va a agregar al final de ArrayList.

Devuelve

Índice de ArrayList al que se ha agregado el elemento.

Observaciones

En el siguiente ejemplo se muestra el uso del método Add.

Ejemplo 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

Ejemplo 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"