IReportAfterEditEventArgs.Changed

Syntax

Changed: Boolean;

Description

The Changed property returns True if the cell contents has been changed during editing.

Example

The following example assumes that there is the ReportBox1 object with the ReportBox type.

Sub ReportBox1OnAfterEdit(Sender: Object; Args: IReportAfterEditEventArgs);
Begin
    If Args.Changed Then
        WinApplication.InformationBox("Data has been changed");
    End If;
End Sub ReportBox1OnAfterEdit;

When the event occurs, the system displays an appropriate message if the cell data has been changed.

See also:

IReportAfterEditEventArgs