Destroy this widget and the associated menu.
(self)
| 4072 | return Widget.__getitem__(self, name) |
| 4073 | |
| 4074 | def destroy(self): |
| 4075 | """Destroy this widget and the associated menu.""" |
| 4076 | Menubutton.destroy(self) |
| 4077 | self.__menu = None |
| 4078 | |
| 4079 | |
| 4080 | class Image: |