System.AnsiStringT.vprintf

From RAD Studio API Documentation
Jump to: navigation, search

C++

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

Properties

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

Description

Sets the value of the AnsiStringT, given a format string and its arguments.

Use vprintf to set 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 length of the final formatted string.

See Also