MCPcopy Index your code
hub / github.com/python/cpython / winfo_rooty

Method winfo_rooty

Lib/tkinter/__init__.py:1344–1348  ·  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

1342 self.tk.call('winfo', 'rootx', self._w))
1343
1344 def winfo_rooty(self):
1345 """Return y coordinate of upper left corner of this widget on the
1346 root window."""
1347 return self.tk.getint(
1348 self.tk.call('winfo', 'rooty', self._w))
1349
1350 def winfo_screen(self):
1351 """Return the screen name of this widget."""

Callers 15

whereMethod · 0.80
_place_windowFunction · 0.80
winconfig_eventMethod · 0.80
__init__Method · 0.80
__init__Method · 0.80
initMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45