Length

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

Length

Gets or sets the length of the current StringBuilder object.

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

value

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

Sets

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

Gets

Gets integer var of the length 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.