System.SysUtils.TStringBuilder.AppendFormat

De RAD Studio API Documentation
Aller à : navigation, rechercher

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 */;

Propriétés

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

Description

Ajoute un nombre d'objets au tableau de caractères en cours de cette instance de TStringBuilder.

Utilisez AppendFormat pour ajouter un nombre d'objets au tableau de caractères en cours de cette instance de TStringBuilder. Les objets sont représentés par une chaîne de spécifications de format et un tableau d'objets à formater. Il existe une relation un-à-un entre les spécifications de format et les objets du tableau d'objets.

Format est une chaîne de spécifications de format.

Args est le tableau d'objets correspondant à formater.

Voir aussi