Return a tuple of (x, y, width, height) which describes the bounding box of the character given by index.
(self, index)
| 647 | |
| 648 | |
| 649 | def bbox(self, index): |
| 650 | """Return a tuple of (x, y, width, height) which describes the |
| 651 | bounding box of the character given by index.""" |
| 652 | return self._getints(self.tk.call(self._w, "bbox", index)) |
| 653 | |
| 654 | |
| 655 | def identify(self, x, y): |