Capacity

Namespace ›› System.MfText ›› StringBuilder ›› Properties ››
Parent Previous Next

Capacity

Gets or sets the maximum number of characters that can be contained in the memory allocated by the current instance.

OutputVar := instance.Value
instance.Value := Value

value

Value is an integer and can be var or any type that matches IsIntegerNumber.

Sets

Set the capacity of the current StringBuilder object.
Can  be var or any type that matches IsIntegerNumber.

Gets

Gets integer var of the capacity of the current StringBuilder object.

Throws

Throws MfArgumentOutOfRangeException if the value specified for a set operation is less than zero or greater than MaxCapacity.

Remarks

The maximum number of characters that can be contained in the memory allocated by the current instance. Its value can range from Length to MaxCapacity.

Capacity does not affect the string value of the current instance. Capacity can be decreased as long as it is not less than Length.

The StringBuilder dynamically allocates more space when required and increases Capacity accordingly. For performance reasons, a StringBuilder might allocate more memory than needed. The amount of memory allocated is implementation-specific.