WebListBox.RowTag

From Xojo Documentation

Method

WebListBox.RowTag(Row As Integer) As Variant

New in 2010r4

Supported for all project types and targets.

Gets and sets the RowTag for each row. Row is zero-based. RowTag can be viewed in the Debugger.

Example

To set the tag:

ListBox1.RowTag(row) = "MyTag"

To get the tag (assuming the value of Row has been set):

Var myTag As Variant
myTag = ListBox1.RowTag(row)