System.AnsiStringT.cat_vprintf

From RAD Studio API Documentation
Jump to: navigation, search


C++

int __cdecl cat_vprintf(const char* format, va_list list) {

Properties

Type Visibility Source Unit Parent
function public dstring.h System AnsiStringT

Description

Appends the result of a given format string and its arguments to the end of the AnsiStringT.

Use cat_cat_vprintf to append to the value of the AnsiStringT, given a standard C++ format specifier. Pass the values to any arguments in the format specifier as a variable argument list that was created using va_start.

This method returns the number of bytes appended to the AnsiStringT.

See Also