IPrxReportUserEvents.EventOnAfterPrintReport

Syntax

Sub EventOnAfterPrintReport(Args: IUiPrxReportEventArgs);
Begin
//set of operators
End Sub EventOnAfterPrintReport;

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

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