WebRadioGroup.AddRowAt

From Xojo Documentation

Method

WebRadioGroup.AddRowAt(index As Integer, item As WebRadioButton)

New in 2020r1

Supported for all project types and targets.

Adds a new WebRadioButton to the group at the index passed.

Sample Code

This adds a new WebRadioButton whose value is set to "Today" at the very first position in the group:

RadioGroup1.AddRowAt(0, New WebRadiobutton("Today", True))

See Also

AddRow method and WebRadioButton class.