TCustomdxComponentPrinter.DoProgress(TBasedxReportLink,Double) Method
Generates the OnGenerateReportProgress event.
Declaration
procedure DoProgress(AReportLink: TBasedxReportLink; const PercentDone: Double); dynamic;
Parameters
Name | Type |
---|---|
AReportLink | TBasedxReportLink |
PercentDone | Double |
Remarks
This method is called when the report stored in the link specified by the AReportLink parameter is being generated. The PercentDone parameter specifies the percentage of the work performed.
The DoProgress method calls the OnGenerateReportProgress event handler (if it has been assigned) and passes the PercentDone parameter and the appropriate TBasedxReportLink object to it. TCustomdxComponentPrinter descendants can override this method to perform specific actions before/after generating the OnGenerateReportProgress event.
See Also