Show contents 

Report > Report Assembly Interfaces > IPrxReportUserEvents > IPrxReportUserEvents.EventOnAfterRecalcSheet

IPrxReportUserEvents.EventOnAfterRecalcSheet

Syntax

EventOnAfterRecalcSheet(Args: IUiPrxSheetEventArgs);

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;

When the event occurs, an information message containing name of the calculated sheet.

See also:

IPrxReportUserEvents