Sub EventOnAfterRecalcSheet(Args: IUiPrxSheetEventArgs);
Begin
// set of operators
End Sub EventOnAfterRecalcSheet;
Args - the parameter, which enables the user to work with event parameters.
The EventOnAfterRecalcSheet method implements the event that occurs after calculating a sheet of the regular report.
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: