Reset radio buttons

Radio buttons have a selected property, which takes a boolean value. Just set them to False. For example :

my_radio_button.selected = False

If you have several, you can go round in a loop. For example (pseudocode - untested) :

for rb in container.get_components():
  if type(rb) is RadioButton:
    rb.selected = False

Something like that.

2 Likes