Description
The COLLATE message is used to set the collate property for the current report. Always check the return code from the COLLATE message for errors, because not all printers support this feature.
Parameters
Parameter | Description of Fields | Comments | Default |
---|---|---|---|
Parm1 - COLLATE | <1> Collage | 0 = No collate 1 = Collate | 0 |
Example
* The following example shows how to use the COLLATE message. declare function Set_Printer stat = Set_Printer("INIT") ;* Start printing stat = Set_Printer("COLLATE", 1) ;* collate output if stat < 0 then goto ErrorHandler ;* not supported end stat = Set_Printer("TERM") ;* End printing