System.AnsiStrings.FmtStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure FmtStr(var Result: AnsiString; const Format: AnsiString;
const Args: array of const);
procedure FmtStr(var Result: AnsiString; const Format: AnsiString;
const Args: array of const; const AFormatSettings: TFormatSettings);

C++

extern DELPHI_PACKAGE void __fastcall FmtStr(System::AnsiString &Result, const System::AnsiString Format, const System::TVarRec *Args, const System::NativeInt Args_High)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.AnsiStrings.pas
System.AnsiStrings.hpp
System.AnsiStrings System.AnsiStrings

Description

Format argument list using format string.

FmtStr formats the argument list given by Args using the format string given by Format into the string variable given by Result. For further details, see the description of the Format function.

See Also