Difference between revisions of "AddToReport"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure AddToReport(s: AnsiString); </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Adds a [[AnsiString|...") |
(→See Also) |
||
Line 20: | Line 20: | ||
*[[WriteLn]] | *[[WriteLn]] | ||
*[[Status]] | *[[Status]] | ||
+ | *[[Alert]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:GUI Functions]] | [[Category:GUI Functions]] |
Revision as of 20:28, 27 June 2011
Definition
procedure AddToReport(s: AnsiString);
Availability
SCAR Divi 3.00 > Current
Description
Adds a string s to the report box. In case the report box is not visible, it will be toggled visible.
Example
begin AddToReport('Hello world!'); end.