System.SysUtils.TStringBuilder.AppendFormat

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AppendFormat(const Format: string; const Args: array of const): TStringBuilder; overload;

C++

TStringBuilder* __fastcall AppendFormat(const System::UnicodeString Format, const System::TVarRec *Args, const int Args_High)/* overload */;

Properties

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

Description

Appends a number of objects to the current character array in this TStringBuilder instance.

Use AppendFormat to append a number of objects to the current character array in this TStringBuilder instance. The objects are represented by a string of format specifications and an array of objects to format. There is a one-to-one relationship between the format specifications and the objects in the objects array.

Format is a string of format specifications.

Args is the corresponding array of objects to format.

See Also

Code Examples