Report: IPrxReport;
The Report property determines a regular report to be exported.
The following example assumes that there is the Report object with the IPrxReport type.
Sub UserProc;
Var
Report: IPrxReport;
Exp: IPrxReportExporter;
Begin
Exp := New PrxReportExporter.Create;
Exp.Report := Report;
Exp.ExportToFile("C:\Report.pdf","pdf");
End Sub UserProc;
After executing the example the report is exported to the specified format.
See also: