Sub EventOnBeforeTransferDataSheet(Args: IUiPrxSheetCancelEventArgs);
Begin
//set of operators;
End Sub EventOnBeforeTransferDataSheet;
Args - the parameter, which enables the user to determine event parameters.
The EventOnBeforeTransferDataSheet method implements the event that occurs before saving changed values of data areas of the regular report sheet into a source.
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: