DesktopPopupMenu.RowTagAt
From Xojo Documentation
Method
DesktopPopupMenu.RowTagAt(index As Integer) As Variant
New in 2021r3
Supported for all project types and targets.
New in 2021r3
Supported for all project types and targets.
A "hidden" identifier associated with the item identified by the row parameter.
Notes
If you want to compare the value of row tag to another value, you should first convert the Variant to it actual data type.
Sample Code
This example populates the RowTagAt identifier with a sequence number.
Since a row tag is a Variant, you must first convert it to an Integer if you want to compare it to another Integer. Do this with an assignment statement such as:
Var recID As Integer
recID = PopupMenu1.RowTagAt(1) // ComboBox inherits from PopupMenu so it also inherits the RowTagAt method
recID = PopupMenu1.RowTagAt(1) // ComboBox inherits from PopupMenu so it also inherits the RowTagAt method
You can also use the CType function to do an explicit conversion to any other datatype. Then compare recID to another Integer: Displaying the row tag of the selected menu item:
TextField1.Value = PopupMenu1.RowTagAt(PopupMenu1.SelectedRowIndex)