IPrxReportUserEvents.EventOnBeforeSaveReport

Syntax

Sub EventOnBeforeSaveReport(Args: IUiPrxReportCancelEventArgs);

Begin

//set of operators;

End Sub EventOnBeforeSaveReport;

Parameters

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

Description

The EventOnBeforeSaveReport method implements the event that occurs before saving the regular report.

Example

Sub EventOnBeforeSaveReport(Args: IUiPrxReportCancelEventArgs);

Begin

WinApplication.InformationBox("Report «" + Args.Report.Name + "» is to be saved");

End Sub EventOnBeforeSaveReport;

An information message is displayed when the event occurs.

See also:

IPrxReportUserEvents