MaxCapacity

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

MaxCapacity

Gets the maximum capacity of the current StringBuilder object.

OutputVar := instance.Value

value

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

Gets

Gets integer var of the maximum 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 length of a StringBuilder object is defined by its number of Char objects.

Like the MfString.Length property, the Length property indicates the length of the current string object. Unlike the MfString.Length property, which is read-only, the Length property allows you to modify the length of the string stored to the StringBuilder object.

If the specified length is less than the current length, the current StringBuilder object is truncated to the specified length. If the specified length is greater than the current length, the end of the string value of the current StringBuilder object is padded with the Unicode NULL character (U+0000).

If the specified length is greater than the current capacity, Capacity increases so that it is greater than or equal to the specified length.

When you instantiate the StringBuilder object by calling Constructor(capacity, maxCapacity), both the length and the capacity of the StringBuilder instance can grow beyond the value of its MaxCapacity property. This can occur particularly when you call the Append, and AppendFormat methods to append small strings.