ExportFlashsAsImages: Boolean;
The ExportFlashsAsImages property determines whether Flash objects are to be exported as images when exporting a report to HTML files (*.html). If the property is set to True, Flash objects are to be exported as images. If the property is set to False, they are exported as Flash objects.
The default property value is False.
The following example assumes that there is the Report object with the IPrxReport type, which sheet contains a Flash object.
Sub UserProc;
Var
Report: IPrxReport;
Exp: IPrxReportExporter;
Begin
Exp := New PrxReportExporter.Create;
Exp.Report := Report;
Exp.ExportFlashsAsImages := True;
Exp.ExportToFile("c:\Report.html", "html");
End Sub UserProc;
After executing the example the Flash object in the output file is displayed as an image.
See also: