Difference between revisions of "AddToReport"

From SCAR Divi Manual
Jump to: navigation, search
(See Also)
Line 18: Line 18:
  
 
==See Also==
 
==See Also==
 +
*[[ClearReport]]
 
*[[WriteLn]]
 
*[[WriteLn]]
 
*[[Status]]
 
*[[Status]]

Revision as of 21:29, 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.

See Also