Set grab for this widget. A grab directs all events to this and descendant widgets in the application.
(self)
| 1051 | self.tk.call('grab', 'release', self._w) |
| 1052 | |
| 1053 | def grab_set(self): |
| 1054 | """Set grab for this widget. |
| 1055 | |
| 1056 | A grab directs all events to this and descendant |
| 1057 | widgets in the application.""" |
| 1058 | self.tk.call('grab', 'set', self._w) |
| 1059 | |
| 1060 | def grab_set_global(self): |
| 1061 | """Set global grab for this widget. |