Return coordinate of cell nearest pixel coordinate (x,y)
(self, x, y)
| 1867 | self.tk.call(self, 'move', 'row', from_, to, offset) |
| 1868 | |
| 1869 | def nearest(self, x, y): |
| 1870 | "Return coordinate of cell nearest pixel coordinate (x,y)" |
| 1871 | return self._getints(self.tk.call(self, 'nearest', x, y)) |
| 1872 | |
| 1873 | # def selection adjust |
| 1874 | # def selection clear |
no test coverage detected