TStrings.Capacity
Capacity of the list, i.e. number of strings that the list can currently hold before it tries to expand.
Declaration
Source position: classesh.inc line 768
public Property
Capacity : Integer;
Description
Capacity is the number of strings that the list can hold before it tries to allocate more memory.
TStrings returns TStrings.Count when read. Trying to set the capacity has no effect. Descendant classes such as TStringlist can override this property such that it actually sets the new capacity.
See also
Name | Description |
---|---|
Integer | A signed 16-bits integer |
TStringList | Standard implementation of the TStrings class. |
TStrings.Count | Number of strings in the list. |