Return True if display item exists at (x,y)
(self, x, y)
| 1847 | # def index |
| 1848 | |
| 1849 | def info_exists(self, x, y): |
| 1850 | "Return True if display item exists at (x,y)" |
| 1851 | return self._getboolean(self.tk.call(self, 'info', 'exists', x, y)) |
| 1852 | |
| 1853 | def info_bbox(self, x, y): |
| 1854 | # This seems to always return '', at least for 'text' displayitems |
nothing calls this directly
no test coverage detected