Value: Variant;
The Value property determines the table cell value.
To execute the example, it is necessary to assign this procedure as event handler to the OnChangeCellContent event (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: