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

Method winfo_y

Lib/tkinter/__init__.py:1459–1463  ·  view source on GitHub ↗

Return the y coordinate of the upper left corner of this widget in the parent.

(self)

Source from the content-addressed store, hash-verified

1457 self.tk.call('winfo', 'x', self._w))
1458
1459 def winfo_y(self):
1460 """Return the y coordinate of the upper left corner of this widget
1461 in the parent."""
1462 return self.tk.getint(
1463 self.tk.call('winfo', 'y', self._w))
1464
1465 def update(self):
1466 """Enter event loop until all pending events have been processed by Tcl."""

Callers 1

adjust_labelMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected