Documentation

Alert

Displays a message in a separate window.

void  Alert(
   argument,     // first value
   ...           // other values
   );

Parameters

argument

[in]  Any values, separated by commas. To separate the information output in several lines you can use the line feed character "\n" or "\r\n". The number of parameters can not exceed 64.

Return Value

No return value.

Note

Arrays can't be passed to the Alert() function. Arrays should be output elementwise. Data of the double type are output with 8 digits after the decimal point, data of the float type are displayed with 5 digits after the decimal point. To derive the real numbers with a different precision or in a scientific format, use DoubleToString().

Data of bool the type are output as "true" or "false" strings. Dates are output as YYYY.MM.DD HH:MI:SS. To display a date in another format use TimeToString(). Data of the color type are output either as an R,G,B string or as a color name, if the color is present in a color set.