Sub EventOnAfterExecuteReport(Args: IUiPrxReportEventArgs);
Begin
// set of operators
End Sub EventOnAfterExecuteReport;
Args - the parameter, which enables the user to work with event parameters.
The EventOnAfterExecuteReport method implements the event that occurs after executing the report.
Sub EventOnAfterExecuteReport(Args: IUiPrxReportEventArgs);
Begin
WinApplication.InformationBox(Args.Report.MetabaseObject.Id);
End Sub EventOnAfterExecuteReport;
When the event occurs, an information message containing identifier of the calculated report is displayed.
See also: