Report > Report Assembly Interfaces > IPrxReportUserEvents > IPrxReportUserEvents.EventOnAfterPrintReport
EventOnAfterPrintReport(Args: IUiPrxReportEventArgs);
Args. The parameter, which enables the user to work with event parameters.
The EventOnAfterPrintReport method implements the event that occurs after printing of the regular report.
Executing the example requires a regular report. Connect a unit to the regular report, select the connected unit an the EventsClass class as an event handler. Add links to the Metabase, Report, Ui system assemblies in the unit.
Sub EventOnAfterPrintReport(Args: IUiPrxReportEventArgs);
Begin
WinApplication.InformationBox(Args.Report.MetabaseObject.Id);
End Sub EventOnAfterPrintReport;
After the event occurs, an information message containing identifier of the printed regular report is displayed.
See also: