Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TCustomdxComponentPrinter.DoProgress(TBasedxReportLink,Double) Method

Generates the OnGenerateReportProgress event.

#Declaration

Delphi
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