CellChecked

This event triggers when a check box cell of the table is checked or unchecked by a user.

Syntax

<Fieldn>_CellChecked (pTable as ISCBCdrTable, pWorkdoc as ISCBCdrWorkdoc, Row as Long, Column as Long, Checked as Boolean)
Parameter Description
pTable Current table object.
pWorkdoc Current workdoc object.
Row This parameter contains the index of the current row on which the user clicked.
Column This parameter contains the index of the current column on which the user clicked.
Checked True: The cell is checked.

False: The cell is not checked.

Sample Code

Private Sub Table_CellChecked(pTable as SCBCdrPROJLib.SCBCdrTable, pWorkdoc as SCBCdrPROJLib.SCBCdrWorkdoc, ByVal Row as Long, ByVal Column as Long, ByVal Checked as Boolean)
   If Checked = True Then
     'The cell (Row, Column) has been checked
   End If
End Sub