Count: Integer;
The Count property returns the number of components in the collection.
Collection capacity is the number of elements a collection can contain. The Count property is the number of variables actually contained in the collection.
Capacity always exceeds or equals the Count property value. If elements are added to the collection, and value of the Count property exceeds the capacity, the capacity automatically increases.
The property use is given in the example for IValidationFilter.UserComponents.
See also: