Get the (x,y) coordinate of the current anchor cell
(self)
| 1801 | self.tk.call(self, 'anchor', 'clear') |
| 1802 | |
| 1803 | def anchor_get(self): |
| 1804 | "Get the (x,y) coordinate of the current anchor cell" |
| 1805 | return self._getints(self.tk.call(self, 'anchor', 'get')) |
| 1806 | |
| 1807 | def anchor_set(self, x, y): |
| 1808 | """Set the selection anchor to the cell at (x, y).""" |