ListBox.CellTagAt
From Xojo Documentation
Method
ListBox.CellTagAt(row as Integer, column as Integer) As Variant
New in 2019r2
Supported for all project types and targets.
New in 2019r2
Supported for all project types and targets.
Method
ListBox.CellTagAt(row as Integer, column as Integer, Assigns value As Variant)
New in 2019r2
Supported for all project types and targets.
New in 2019r2
Supported for all project types and targets.
Gets or sets a "hidden" identifier associated with the cell identified by its parameters. Row and Column are zero-based.
Sample Code
This example sets a tag for a cell.
Me.CellTagAt(1, 4) = "My Cell Tag"
This example displays the tag for a cell:
MessageBox(Me.CellTagAt(1, 4))
See Also
Variant data type.