version 6.8
PV PRINT (area)
Parameter | Type | Description | |
area | Longint | 4D View area |
Description
The PV PRINT command prints the 4D View area passed as a parameter.
The page settings and print preview are accessible using the command PV EXECUTE COMMAND associated with the pv cmd print page setup and pv cmd print preview constants.
Pay attention to the 4D View area refresh option: if the refresh is not automatic, do not forget to execute it before printing or previewing the print area.
Example
Print with footer settings.
PV SET HEADER (Area;pv footer center;" #D" Printed) `Assigning page footer CONFIRM("Print values or formulas?";"Formulas";"Values") If (OK=1) PV PRINT FORMULAS (Area) `Print formulas Else PV PRINT (Area) `Print values End if
See Also