Get method for the Radio Element

This commit is contained in:
MikeTheWatchGuy 2019-06-19 10:14:30 -04:00
parent b35c55726d
commit 7574c9ea97
1 changed files with 5 additions and 0 deletions

View File

@ -1121,6 +1121,11 @@ class Radio(Element):
""" """
self.TKIntVar.set(0)
def Get(self):
""" """
return self.TKIntVar.get() == self.EncodedRadioValue
def __del__(self):
""" """
try: