You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Description

The MARGIN message is used to change the margins in the middle of a report.

Parameters

ParameterDescription of FieldsCommentsDefault
Parm1 – Margin<1> Left MarginLeft Margin0.5
 <2> Top MarginTop Margin0.5
 <3> Right MarginRight Margin0.5
 <4> Bottom MarginBottom Margin0.5

Example

 
The following example shows how to use the MARGIN message change the margins of the report.
declare function Set_Printer
$insert OIPRINT_EQUATES
stat = Set_Printer("INIT") ;* Start printing
stat = Set_Printer("TEXT", "Normal margins.")
Change margins to 1.5
stat = Set_Printer("MARGIN", 1.5:@fm:1.5:@fm:1.5:@fm:1.5)
stat = Set_Printer("TEXT", "1.5 inch margins.")
stat = Set_Printer("TERM") ;* End printing

 

 

  • No labels