IPrxReportUserEvents.EventOnAfterExecuteReport

Syntax

Sub EventOnAfterExecuteReport(Args: IUiPrxReportEventArgs);

Begin

// set of operators

End Sub EventOnAfterExecuteReport;

Parameters

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

Description

The EventOnAfterExecuteReport method implements the event that occurs after executing the report.

Example

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:

IPrxReportUserEvents