IPrxReportExporter.ExportReportTitle

Syntax

ExportReportTitle: Boolean;

Description

The ExportReportTitle property determines whether the report title is to be exported to PDF (extended).

Comments

If the property is set to True, the report title is to be exported; if the property is set to False, it is not.

The default property value is False.

Example

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.ExportReportTitle := True;

Exp.ExportToFile("C:\Report.pdf","pdfex");

End Sub UserProc;

When exporting a report its title is exported to the output file.

See also:

IPrxReportExporter