TdxReport.OnExported Event
Allows you to receive asynchronous export operation results.
Declaration
property OnExported: TdxReportExportedEvent read; write;
Remarks
Handle the OnExported
event to receive exported report content after a StartExportAsync procedure call.
Event Occurrence
The OnExported
event occurs every time a report operation is successfully completed after a StartExportAsync or ExportTo~ procedure call.
Event Parameters
The following parameters are available within an OnExported
event handler:
ASender
- Provides access to the report generator component that raised the
OnExported
event. AReportName
- Returns the exported report’s name.
AResultStream
- Returns a stream that contains exported report content. The
AFormat
parameter value of the StartExportAsync procedure determines the target content format.
Refer to the TdxReportExportedEvent procedural type description for details on all parameters accessible within an OnExported
event handler.
See Also