System.SysUtils.TStringBuilder.AppendLine

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AppendLine: TStringBuilder; overload; inline;
function AppendLine(const Value: string): TStringBuilder; overload;

C++

TStringBuilder* __fastcall AppendLine()/* overload */;
TStringBuilder* __fastcall AppendLine(const System::UnicodeString Value)/* overload */;

Properties

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

Description

Appends a line terminator or a string and a line terminator to the current character array in this instance.

Use AppendLine to append a line terminator or a string and a line terminator to the current character array in this instance.

See Also

Code Examples