Show contents 

Report > Report Assembly Interfaces > IPrxReportUserEvents > IPrxReportUserEvents.EventOnAfterPrintReport

IPrxReportUserEvents.EventOnAfterPrintReport

Syntax

EventOnAfterPrintReport(Args: IUiPrxReportEventArgs);

Parameters

Args. The parameter, which enables the user to work with event parameters.

Description

The EventOnAfterPrintReport method implements the event that occurs after printing of the regular report.

Example

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:

IPrxReportUserEvents