ExportFlashsAsImages: Boolean;
The ExportFlashsAsImages property determines whether Flash objects should be exported as images when exporting a report to HTML (*.html). If the property is set to True, Flash objects are 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: