WebListBox.CellClick
From Xojo Documentation
Event
WebListBox.CellClick(Row As Integer, Column As Integer)
New in 2011r1
Supported for all project types and targets.
New in 2011r1
Supported for all project types and targets.
The user has clicked on the Row, Column cell. Row and Column are zero-based.
Example
The following code in the CellClick event handler reports the cell that was clicked:
MsgBox("You clicked cell row:" + row.ToString + ", column: " + column.ToString + ".")