[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Format a string with given arguments and store the result in a buffer.
Source position: sysstrh.inc line 130
function FormatBuf( |
var Buffer; |
BufLen: Cardinal; |
const Fmt; |
fmtLen: Cardinal; |
const Args: array of Const |
):Cardinal; |
var Buffer; |
BufLen: Cardinal; |
const Fmt; |
fmtLen: Cardinal; |
const Args: array of Const; |
const FormatSettings: TFormatSettings |
):Cardinal; |
FormatBuf calls Format and stores the result in Buf.
|
Format a string with given arguments. |
Program Example72; { This program demonstrates the FormatBuf function } Uses sysutils; Var S : ShortString; Const Fmt : ShortString = 'For some nice examples of fomatting see %s.'; Begin S:=''; SetLength(S,FormatBuf (S[1],255,Fmt[1],Length(Fmt),['Format'])); Writeln (S); End.