DesktopListBoxRow.Tag

From Xojo Documentation

Read-Only Property (As Variant )
VariantValue = aDesktopListBoxRow.Tag

New in 2021r3

Supported for all project types and targets.

Gets the tag of the current row.

Examples

This example places all the rows in the DesktopListBox named "LineItems" with a Tag value of "taxable" into an array:

Var taxableLineItems() As DesktopListBoxRow
For Each row As DesktopListBoxRow in LineItems.Rows
If row.Tag = "Taxable" Then
taxableLineItems.AddRow(row)
End If
Next