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

Method winfo_vrootx

Lib/tkinter/__init__.py:1454–1458  ·  view source on GitHub ↗

Return the x offset of the virtual root relative to the root window of the screen of this widget.

(self)

Source from the content-addressed store, hash-verified

1452 self.tk.call('winfo', 'vrootwidth', self._w))
1453
1454 def winfo_vrootx(self):
1455 """Return the x offset of the virtual root relative to the root
1456 window of the screen of this widget."""
1457 return self.tk.getint(
1458 self.tk.call('winfo', 'vrootx', self._w))
1459
1460 def winfo_vrooty(self):
1461 """Return the y offset of the virtual root relative to the root

Callers 1

_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected