Méthode TrimToSize

Définit la capacité sur le nombre réel d'éléments dans l'objet ArrayList.

Syntaxe

Object.TrimToSize()

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

Remarques

L'exemple suivant illustre l'utilisation de la méthode TrimToSize.

Exemple 1 :

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

'Add Elements to the end of ArrayList Object
Dim Index
Index = Obj.Add(10)
Index = Obj.Add(40)
Index = Obj.Add(20)

'Sets the capacity to the actual number of elements in the ArrayList object
Obj.TrimToSize ()
'Output: Internally ArrayList Capacity changed to the actual number of elements in the ArrayList object