IPrxReportUserEvents.EventOnAfterExecuteFormulaIsland

Syntax

Sub EventOnAfterExecuteFormulaIsland(Args: IUiPrxFormulaIslandEventArgs);

Begin

//set of operators;

End Sub EventOnAfterExecuteFormulaIsland;

Parameters

Args - the parameter, which enables the user to determine additional event parameters.

Description

The EventOnAfterExecuteFormulaIsland method implements the event that occurs after calculating formula area of the regular report.

Example

Sub EventOnAfterExecuteFormulaIsland(Args: IUiPrxFormulaIslandEventArgs);
Begin
    WinApplication.InformationBox("Formula area: " + Args.FormulaIsland.Id);
End Sub EventOnAfterExecuteFormulaIsland;

After the event occurs, an information message containing identifier of the formula area is displayed.

See also:

IPrxReportUserEvents