Show contents 

Report > Report Assembly Interfaces > IPrxReportUserEvents > IPrxReportUserEvents.EventOnBeforeSaveReport

IPrxReportUserEvents.EventOnBeforeSaveReport

Syntax

EventOnBeforeSaveReport(Args: IUiPrxReportCancelEventArgs);

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

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:

IPrxReportUserEvents