TdxReportExportedEvent Type
The procedural type for export result retrieval events.
Declaration
TdxReportExportedEvent = procedure(ASender: TdxReport; const AReportName: string; AResultStream: TStream) of object;
Parameters
Name | Type | Description |
---|---|---|
ASender | TdxReport | Provides access to the report generator component that raised the export result retrieval event. |
AReportName | string | The exported report’s name. |
AResultStream | TStream | Returns a stream that contains exported content. |
Remarks
An export result retrieval event occurs every time an asynchronous report export operation is successfully completed after a StartExportAsync procedure call.
Direct TdxReportExportedEvent Type Reference
The TdxReport.OnExported event references the TdxReportExportedEvent
procedural type.
See Also