Vector.CapacityIncrement Property

Definition

The amount by which the capacity of the vector is automatically incremented when its size becomes greater than its capacity.

[Android.Runtime.Register("capacityIncrement")]
protected int CapacityIncrement { get; set; }
[<Android.Runtime.Register("capacityIncrement")>]
member this.CapacityIncrement : int with get, set

Property Value

Attributes

Remarks

The amount by which the capacity of the vector is automatically incremented when its size becomes greater than its capacity. If the capacity increment is less than or equal to zero, the capacity of the vector is doubled each time it needs to grow.

Java documentation for java.util.Vector.capacityIncrement.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to