Sub EventOnBeforeSaveReport(Args: IUiPrxReportCancelEventArgs);
Begin
//set of operators;
End Sub EventOnBeforeSaveReport;
Args - the parameter, which enables the user to work with event parameters.
The EventOnBeforeSaveReport method implements the event that occurs before saving the regular report.
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: