SortedList: Capacity (let)

Capacity

Gets the capacity of the SortedList object.



 Public Property Let Capacity(
	  ByVal Value As Long )

Parameters

Value
[ByVal] Long. The number of elements the SortedList object can contain.

Remarks

Capacity is the number of elements that the SortedList object can store. Count is the number of elements that are actually in the SortedList.

Capacity is always greater than or equal to Count. If Count exceeds Capacity while adding elements, the capacity is automatically increased by reallocating the internal array before copying the old elements and adding the new elements.

The capacity can be decreased by calling TrimToSize or by setting the Capacity property explicitly. When the value of Capacity is set explicitly, the internal array is also reallocated to accommodate the specified capacity.

Read/Write.

Exceptions

Exception Condition
ArgumentOutOfRangeException The value assigned is less than the current number of elements in the SortedList object.

See Also

Project CorLib Overview

Class SortedList Overview