ExportObjects: Boolean;
The ExportObjects property determines whether the objects located on report sheets (charts, maps, images, and so on) should be exported. If the property is set to True, the objects are exported; if the property is set to False, they are not.
The default value is True.
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.ExportObjects := False;
Exp.ExportToFile("C:\Report.xls","xls");
End Sub UserProc;
After executing the example the output file does not contain objects located on the report sheets.
See also: