Merge pull request #1587 from PySimpleGUI/Dev-latest

Get method for the Radio Element
This commit is contained in:
MikeTheWatchGuy 2019-06-19 10:15:46 -04:00 committed by GitHub
commit 6b27f50b93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: