MCPcopy Index your code
hub / github.com/RustPython/RustPython / grab_set

Method grab_set

Lib/tkinter/__init__.py:1053–1058  ·  view source on GitHub ↗

Set grab for this widget. A grab directs all events to this and descendant widgets in the application.

(self)

Source from the content-addressed store, hash-verified

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.

Callers 3

goMethod · 0.80
goMethod · 0.80
__init__Method · 0.80

Calls 1

callMethod · 0.45

Tested by

no test coverage detected