Obtiene el número de elementos realmente contenidos en el objeto ArrayList.
Sintaxis
Object.Count()
Argumentos: Object: necesario. Siempre es el nombre del objeto ArrayList.
Devuelve
Número de elementos realmente contenidos en el objeto ArrayList.
Observaciones
En el siguiente ejemplo se muestra el uso del método Count.
Ejemplo 1:
'Create ArrayList Object
Dim Obj
Dim Cnt
Set Obj = CreateObject("System.Collections.ArrayList")
'Add Elements to the end of the ArrayList Object
Dim Index
Index = Obj.Add(10)
Index = Obj.Add(40)
Index = Obj.Add(20)
'Gets the number of elements actually contained in the ArrayList object.
Cnt = Obj.Count()
'Output: 3