IReportCellContentChangeEventArgs.Value

Syntax

Value: Variant;

Description

The Value property determines the table cell value.

Example

To execute the example, set this procedure as an handler of the OnChangeCellContent event (changing table cell contents) for the ReportBox component that has the ReportBox1 identifier.

Sub ReportBox1OnChangeCellContent(Sender: Object; Args: IReportCellContentChangeEventArgs);

Begin

If Args.Type = TabCellContentChange.Formula Then

WinApplication.InformationBox("A formula has been entered: " + Args.Value);

End If;

End Sub ReportBox1OnChangeCellContent;

If you type in or change a formula when changing the value of a table cell, the system displays a message with the formula text.

See also:

IReportCellContentChangeEventArgs.Value