IPrxReportUserEvents.EventOnBeforeTransferDataSheet

Syntax

Sub EventOnBeforeTransferDataSheet(Args: IUiPrxSheetCancelEventArgs);

Begin

//set of operators;

End Sub EventOnBeforeTransferDataSheet;

Parameters

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

Description

The EventOnBeforeTransferDataSheet method implements the event that occurs before saving changed values of data areas of the regular report sheet into a source.

Example

Sub EventOnBeforeTransferDataSheet(Args: IUiPrxSheetCancelEventArgs);

Begin

WinApplication.InformationBox("Changed data of data areas on «" + Args.Sheet.Name + "» is to be saved");

End Sub EventOnBeforeTransferDataSheet;

An information message is displayed when the event occurs.

See also:

IPrxReportUserEvents