Set grab for this widget. A grab directs all events to this and descendant widgets in the application.
(self)
| 1069 | self.tk.call('grab', 'release', self._w) |
| 1070 | |
| 1071 | def grab_set(self): |
| 1072 | """Set grab for this widget. |
| 1073 | |
| 1074 | A grab directs all events to this and descendant |
| 1075 | widgets in the application.""" |
| 1076 | self.tk.call('grab', 'set', self._w) |
| 1077 | |
| 1078 | def grab_set_global(self): |
| 1079 | """Set global grab for this widget. |