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.
Set the capacity of the current StringBuilder object.
Can be var or any type that matches IsIntegerNumber.
Gets integer var of the capacity of the current StringBuilder object.
Throws MfArgumentOutOfRangeException if the value specified for a set operation is less than zero or greater than MaxCapacity.
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.