DesktopListBox.CellTagAt
From Xojo Documentation
Method
DesktopListBox.CellTagAt(row as Integer, column as Integer) As Variant
New in 2021r3
Supported for all project types and targets.
New in 2021r3
Supported for all project types and targets.
Method
DesktopListBox.CellTagAt(row as Integer, column as Integer, Assigns value As Variant)
New in 2021r3
Supported for all project types and targets.
New in 2021r3
Supported for all project types and targets.
Gets or sets a "hidden" identifier associated with the cell identified by its parameters.
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.