File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,15 +96,15 @@ for AReportParameter in AReport.Parameters do
9696Once a report layout is configured (including data binding and parameters),
9797you can export reports in any supported format.
9898
99- The current example exports a PDF report and saves it to a file:
99+ The current example generates a report and exports it to a file in the PDF format :
100100
101101** Delphi:**
102102``` pas
103103AStream := TMemoryStream.Create; // AStream: TMemoryStream;
104104try
105- // Export a report to PDF format and save it to a memory stream
105+ // Export a report to a memory stream in the PDF format
106106 AReport.ExportToPDF(AStream);
107- // Write the content of the memory stream to a file
107+ // Save memory stream content to a file
108108 AStream.SaveToFile('Order_11077.pdf');
109109finally
110110 AStream.Free;
You can’t perform that action at this time.
0 commit comments