Difference between revisions of "ChangeReportWidth"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure ChangeReportWidth(Width: Integer); </source> ==Availability== SCAR Divi 3.00 > Current *Before SCAR Divi 3.25, this...")
 
Line 5: Line 5:
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.00 > 3.35
  
 
*Before SCAR Divi 3.25, this function changed the width of the report box to '''Width'''.
 
*Before SCAR Divi 3.25, this function changed the width of the report box to '''Width'''.
Line 19: Line 19:
 
</source>
 
</source>
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:GUI Functions]]
 

Revision as of 18:37, 1 June 2012

Definition

procedure ChangeReportWidth(Width: Integer);

Availability

SCAR Divi 3.00 > 3.35

  • Before SCAR Divi 3.25, this function changed the width of the report box to Width.

Description

A dummy function, it does not perform any action, it provides backwards compatibility to compile older scripts.

Example

begin
  ChangeReportWidth(200);
end.