Count: Integer;
The Count property returns the number of variables in a collection.
Collection capacity is the number of element a collection can contain. The Count property is the number of elements actually contained in the collection.
Capacity always exceeds or equals to the Count property value. If the Count property value exceeds capacity when new elements are added into collection, the capacity is automatically increased.
The property use is given in the example for ISmLinearRegress.PDLTermCollection.
See also: