Return the y coordinate of the pointer on the root window.
(self)
| 1298 | self.tk.call('winfo', 'pointerxy', self._w)) |
| 1299 | |
| 1300 | def winfo_pointery(self): |
| 1301 | """Return the y coordinate of the pointer on the root window.""" |
| 1302 | return self.tk.getint( |
| 1303 | self.tk.call('winfo', 'pointery', self._w)) |
| 1304 | |
| 1305 | def winfo_reqheight(self): |
| 1306 | """Return requested height of this widget.""" |