WebListBox.CellTagAt
From Xojo Documentation
Method
CellTagAt(Row As Integer, Column As Integer) As Variant
New in 2020r1
Supported for all project types and targets.
New in 2020r1
Supported for all project types and targets.
Allows you to get or set the Variant value associated with the cell at the Row and Column passed.
Notes
Passing an index that is outside the bounds of the rows and/or columns will result in an OutOfBoundsException.
Sample Code
This example sets the cell tag at row 0, column 0 to the object Employee, an instance of a class:
<rbcode> ListBox1.CellTagAt(0, 0) = Employee
See Also
Variant type.