System.SysUtils.TStringBuilder.FLength

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

FLength: Integer;

C++

int FLength;

Properties

Type Visibility Source Unit Parent
field protected
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TStringBuilder

Description

FLength is the real length of the built string.

The FLength field is used internally to store the real length of the string that is being built. The length of the FData array does not always correspond to FLength.

The Length property uses this field to report the accurate number of characters stored in the TStringBuilder instance.

See Also