ITabCellContentChangeEventArgs.Value

Syntax

Value: Variant;

Description

The Value property determines the table cell value.

Example

Executing the example requires this procedure is set as the OnChangeCellContent event handler (changing content of a table cell) for the TabSheetBox component named TabSheetBox1.

Sub TabSheetBox1OnChangeCellContent(Sender: Object; Args: ITabCellContentChangeEventArgs);

Begin

If Args.Type = TabCellContentChange.Formula Then

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

End If;

End Sub TabSheetBox1OnChangeCellContent;

If during cell editing a formula has been entered or changed, an information message containing the text of this formula is to be displayed.

See also:

ITabCellContentChangeEventArgs