IPrxReportUserEvents.EventOnAfterRecalcSheet

Syntax

Sub EventOnAfterRecalcSheet(Args: IUiPrxSheetEventArgs);

Begin

// set of operators

End Sub EventOnAfterRecalcSheet;

Parameters

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

Description

The EventOnAfterRecalcSheet method implements the event that occurs after calculating a sheet of the regular report.

Example

Sub EventOnAfterRecalcSheet(Args: IUiPrxSheetEventArgs);

Begin

WinApplication.InformationBox(Args.Sheet.Name);

End Sub EventOnAfterRecalcSheet;

After the event occurs, an information message containing the name of the calculated sheet is displayed.

See also:

IPrxReportUserEvents