pbPDFAllPages - cDRReport¶
Methods - Properties - Events
Type¶
Default¶
True
Arguments¶
None
Description¶
Indicates if exporting to PDF should export all pages or just one page.
Can be retrieved or set after the OCX is initialized.
Related topics¶
- pePDFFacturXProfile
- pePDFFacturXRelationship
- pePDFImageQuality
- pePDFPageMode
- pePDFType
- piPDFPage
- psPDFXMLFileName
- psPDFOwnerPassword
- psPDFUserPassword
DataFlex Framework Usage¶
- Web
- Windows
- FlexTron
Sample¶
Object oReport is a cDRReport
Set psReportName to 'MyReport.dr'
End_Object
Object oExportToPDFReportButton is a Button
Set Label to 'Export Report to PDF'
Procedure OnClick
String sReportId
Get OpenReport of oReport to sReportId
If (sReportId <> '') Begin
Set pbPDFAllPages of oReport to false
Set piPDFPage of oReport to 3
Send ExportReport of oReport C_drPDF 'c:\tmp\MyReport.pdf'
End
End_Procedure
End_Object