PRIM_PDF - save Method
Saves the PDF document
Member of PRIM_PDF (PRIM_PDF)
Parameters
Name |
Type |
Data Type |
Description |
Filename |
*Input |
Unicode String |
File name of PDF document |
Details
Saves the PDF document.
Example
Save the PDF document
Define_Com Class(#PRIM_PDF) Name(#pdf) Unitm(mm) Pageformat(A4) Pageorientation(Portrait)
#pdf.start
#pdf.text Text('Hello World!') Left(10) Top(10)
#pdf.save Filename('myReport.pdf')