Destroy this widget and the associated menu.
(self)
| 4211 | return Widget.__getitem__(self, name) |
| 4212 | |
| 4213 | def destroy(self): |
| 4214 | """Destroy this widget and the associated menu.""" |
| 4215 | Menubutton.destroy(self) |
| 4216 | self.__menu = None |
| 4217 | |
| 4218 | |
| 4219 | class Image: |