System.SysUtils.TStringBuilder.MaxCapacity

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property MaxCapacity: Integer read GetMaxCapacity;

C++

__property int MaxCapacity = {read=GetMaxCapacity, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TStringBuilder

Description

Used to get the maximum size allowed of the character array stored in this TStringBuilder instance.

Use MaxCapacity to get the maximum size allowed of the character array stored in this TStringBuilder instance. MaxCapacity is set when the instance of TStringBuilder is created and determines the maximum value to which the Capacity property can be set.

See Also