VisualCollection.Capacity Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
.NET