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

Method winfo_rooty

Lib/tkinter/__init__.py:1326–1330  ·  view source on GitHub ↗

Return y coordinate of upper left corner of this widget on the root window.

(self)

Source from the content-addressed store, hash-verified

1324 self.tk.call('winfo', 'rootx', self._w))
1325
1326 def winfo_rooty(self):
1327 """Return y coordinate of upper left corner of this widget on the
1328 root window."""
1329 return self.tk.getint(
1330 self.tk.call('winfo', 'rooty', self._w))
1331
1332 def winfo_screen(self):
1333 """Return the screen name of this widget."""

Callers 2

whereMethod · 0.80
_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected