ListBox.CellTag
From Xojo Documentation
This item was deprecated in version 2019r2. Please use ListBox.CellTagAt as a replacement. |
Property (As Variant )
aListBox.CellTag(Row as Integer, Column as Integer) = newVariantValue
or
VariantValue = aListBox.CellTag(Row as Integer, Column as Integer)
Supported for all project types and targets.
or
VariantValue = aListBox.CellTag(Row as Integer, Column as Integer)
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.
Example
This example sets a tag for a cell.
Me.CellTag(1, 4) = "My Cell Tag"