Skip to content

psPDFXMLFileName - cDRReport

Methods - Properties - Events

Type

String

Default

No value

Arguments

None

Description

While it is possible to embed any file in the PDF the XML file is expected to contain ZUGFeRD/Factur-X data.

Can be retrieved or set after the OCX is initialized.

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 psPDFXMLFileName of oReport to 'c:\test\facturx.xml'
            Send ExportReport of oReport C_drPDF 'c:\tmp\MyReport.pdf'
        End
    End_Procedure
End_Object