Return a tuple of (x, y, width, height) which describes the bounding box of the character given by index.
(self, index)
| 640 | |
| 641 | |
| 642 | def bbox(self, index): |
| 643 | """Return a tuple of (x, y, width, height) which describes the |
| 644 | bounding box of the character given by index.""" |
| 645 | return self._getints(self.tk.call(self._w, "bbox", index)) |
| 646 | |
| 647 | |
| 648 | def identify(self, x, y): |