Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterDescription
LeftA number indicating the width of the margin on the left hand side of the paper, in the default units of measure (Inches or millimeters)
TopA number indicating the width of the margin on the top edge of the paper, in the default units of measure (Inches or millimeters)
RightA number indicating the width of the margin on the right hand side of the paper, in the default units of measure (Inches or millimeters)
BottomA number indicating the width of the margin on the bottom edge of the paper, in the default units of measure (Inches or millimeters_

Example

 

Code Block
* In this example, the left and right margins are set to
* half an inch, while the top and bottom are set to an
* inch
 
Declare Subroutine Run_Report
Stmt = 'LIST CUSTOMERS CUSTOMER_NAME CITY STATE ZIP '
stmt:= 'MARGINS .5,1,.5,1'
 
Run_Report("",Stmt)