?· prepare a report using the Prepare method;
?· create an instance of export filter and set up its properties;
?· call the Export method of the Report object.
The following example exports a prepared report in the HTML format:
FastReport.Export.Html.HTMLExport export = new FastReport.Export.Html.HTMLExport();
if (export.ShowDialog())
report1.Export(export, "result.html");
In this example, export settings are made using the dialog window.
Comments
From the programmer's manual: