IPrxReportUserEvents.EventOnBeforeTransferData

Syntax

Sub EventOnBeforeTransferData(Args: IUiPrxReportCancelEventArgs);

Begin

// set of operators

End Sub EventOnBeforeTransferData;

Parameters

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

Description

The EventOnBeforeTransferData method implements the event that occurs before saving changed values of all data areas of the report to a source.

Example

Sub EventOnBeforeTransferData(Args: IUiPrxReportCancelEventArgs);

Begin

WinApplication.InformationBox("Report data " + Args.Report.MetabaseObject.Id + " are saved to cube");

End Sub EventOnBeforeTransferData;

An information message is displayed when the event occurs.

See also:

IPrxReportUserEvents