VisualCollection.Capacity Property

Definition

Gets or sets the number of elements that the VisualCollection can contain.

public:
 property int Capacity { int get(); void set(int value); };
public int Capacity { get; set; }
member this.Capacity : int with get, set
Public Property Capacity As Integer

Property Value

The number of elements that the VisualCollection can contain.

Exceptions

Capacity is set to a value that is less than Count.

Remarks

The value of Capacity is the number of elements that the VisualCollection is capable of storing. Count is the number of visuals that are actually in the VisualCollection. Capacity is always greater than or equal to Count. If Count exceeds Capacity while adding elements, the capacity of the VisualCollection is increased. By default Capacity is zero.

Applies to