IPrxReportUserEvents.EventOnAfterActivateSheet

Syntax

Sub EventOnAfterActivateSheet(Args: IUiPrxActivateSheetEventArgs);

Begin

// set of operators

End Sub EventOnAfterActivateSheet;

Parameters

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

Description

The EventOnAfterActivateSheet method implements the event that occurs after changing the active sheet of the regular report.

Example

Sub EventOnAfterActivateSheet(Args: IUiPrxActivateSheetEventArgs);

Begin

WinApplication.InformationBox("Was active " + Args.OldSheet.Name + #13 + #10 + "Has become active " + Args.NewSheet.Name);

End Sub EventOnAfterActivateSheet;

After the event occurs, a message containing information on the previous and the current active sheets is displayed.

See also:

IPrxReportUserEvents