Report > Report Assembly Interfaces > IPrxReportUserEvents > IPrxReportUserEvents.EventOnBeforeSaveReport
EventOnBeforeSaveReport(Args: IUiPrxReportCancelEventArgs);
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.
Executing the example requires that the repository contains a regular report with connected unit. The connected module and the Parent class must be specified as event handler.
Add links to the Report, Ui system assemblies.
Public Class EventsClass: Parent
Public Sub OnBeforeSaveReport(Report: IPrxReport; Var Cancel: Boolean);
Begin
//Call system event redetermined in the Parent class
Inherited OnBeforeSaveReport(Report, Cancel);
End Sub OnBeforeSaveReport;
End Class EventsClass;
Class Parent: ReportEvents
// Handle the EventOnBeforeSaveReport event
Public Sub EventOnBeforeSaveReport(Args: IUiPrxReportCancelEventArgs);
Begin
WinApplication.InformationBox("Report will be saved");
End Sub EventOnBeforeSaveReport;
End Class Parent;
An information message is displayed when the event occurs.
See also: