DesktopListBox.RowTagAt
From Xojo Documentation
You are currently browsing the old Xojo documentation site. Please visit the new Xojo documentation site! |
Method
DesktopListBox.RowTagAt(row as Integer) As Variant
New in 2021r3
Supported for all project types and targets.
New in 2021r3
Supported for all project types and targets.
Gets and sets the RowTag for the row.
Examples
To set the tag:
ListBox1.RowTagAt(row) = "MyTag"
To get the tag:
myTag = ListBox1.RowTagAt(row)