WebPopupMenu.RowTagAt

From Xojo Documentation

Method

WebPopupMenu.RowTagAt(index as Integer) As Variant

New in 2020r1

Supported for all project types and targets.

Gets and sets the RowTag for the row at the index passed.

Sample Code

This example code sets the tag for the last row in the popup menu to the value of a variable called rowID:

PeoplePopup.RowTagAt(PeoplePopup.LastRowIndex) = rowID

To get the tag:

rowID = PeoplePopup.RowTagAt(PeoplePopup.LastRowIndex)