How to Deselect WebRadioGroup

What’s the best way to deselect all values in a WebRadioGroup?

The methods ‘SelectByCaption’ and ‘SelectByTag’ say they won’t do anything if you pass a null string…

Seems like this should work:

  For c As Integer = 0 To RadioGroup1.ColumnCount - 1
    For r As Integer = 0 To RadioGroup1.RowCount - 1
      RadioGroup1.CellValue(r, c) = False
    Next
  Next

Thank you Paul… I thought that might be the answer, but was hoping for a simple method. I’ll make one based on that.