WebRadioButton.Tag

From Xojo Documentation

Property (As Variant )
aWebRadioButton.Tag = newVariantValue
or
VariantValue = aWebRadioButton.Tag

New in 2020r1

Supported for all project types and targets.

This can be used to store any value or object you wish to associate with the button.

Sample Code

This example shows adding a WebRadioButton to a WebRadioGroup with the Tag property set to the current date:

Var button As New WebRadioButton("Today", True)
button.Tag = DateTime.Now
RadioGroup1.AddRow(button)