AfterTableCellComboBoxItemSelected event

This event is fired after a user selected an item from the value list of a table cell's combo box. It is also fired when the same item is selected as before.

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

XDocument object that is currently loaded.

pField

Field object that contains the table on which a value is selected from a combobox.

RowIndex

Zero-based index of the row the cell with the combo box belongs to.

ColumnIndex

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

SelectedIndex

Zero-based index of the selected item in the list of combo box items.

SelectedText

Text of the selected item that is assigned to the cell.