Set grab for this widget. A grab directs all events to this and descendant widgets in the application.
(self)
| 956 | self.tk.call('grab', 'release', self._w) |
| 957 | |
| 958 | def grab_set(self): |
| 959 | """Set grab for this widget. |
| 960 | |
| 961 | A grab directs all events to this and descendant |
| 962 | widgets in the application.""" |
| 963 | self.tk.call('grab', 'set', self._w) |
| 964 | |
| 965 | def grab_set_global(self): |
| 966 | """Set global grab for this widget. |