property Count: Integer;
Read Count to determine the number of entries in the Items array.
Increasing the size of Count will add the necessary number of nil pointers to the end of the Items array. Decreasing the size of Count will remove the necessary number of entries from the end of the Items array.
Count is not always the same as the number of objects referenced in the list. Some of the entries in the Items array may contain nil pointers. To remove the nil pointers and set Count to the number of entries that contain references to objects, call the Pack method.