Sets all Radio Buttons in the group to not selected
(self)
| 3174 | self._visible = visible |
| 3175 | |
| 3176 | def reset_group(self): |
| 3177 | """ |
| 3178 | Sets all Radio Buttons in the group to not selected |
| 3179 | """ |
| 3180 | self.TKIntVar.set(0) |
| 3181 | |
| 3182 | def get(self): |
| 3183 | # type: (Radio) -> bool |