AfterTableCellChanged event

This script event is fired when the user changes the text of a table cell. This event also fires when the cell is configured as combo box and a different item is selected from the value list.

ValidationForm_AfterTableCellChanged( _
    ByVal pXDoc As CASCADELib.CscXDocument, _
    ByVal pField As CASCADELib.CscXDocField, _
    ByVal RowIndex As Long, _
    ByVal ColumnIndex As Long, _
    ByVal NewText As String _
    )
pXDoc

XDocument object that is currently loaded.

pField

Field that contains the table that the changed cell belongs to.

RowIndex

Zero-based index of the row the confirmed table cell belongs to.

ColumnIndex

Zero-based index of the column in the table the cell belongs to. Using invisible columns this can be different from the displayed column index.

NewText

Changed text in the table cell.