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|...") |
|||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
| − | procedure AddToReport( | + | procedure AddToReport(const Str: string); |
</source> | </source> | ||
| Line 8: | Line 8: | ||
==Description== | ==Description== | ||
| − | Adds a [[ | + | Adds a [[string]] '''s''' to the report box. In case the report box is not visible, it will be toggled visible. |
==Example== | ==Example== | ||
| Line 18: | Line 18: | ||
==See Also== | ==See Also== | ||
| + | *[[ClearReport]] | ||
*[[WriteLn]] | *[[WriteLn]] | ||
*[[Status]] | *[[Status]] | ||
| + | *[[Alert]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:GUI Functions]] | [[Category:GUI Functions]] | ||
Latest revision as of 15:03, 4 April 2012
Definition
procedure AddToReport(const Str: string);
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.