Return tuple (x,y,width,height,baseline) giving the bounding box and baseline position of the visible part of the line containing the character at INDEX.
(self, index)
| 3910 | self.tk.call(self._w, 'delete', index1, index2) |
| 3911 | |
| 3912 | def dlineinfo(self, index): |
| 3913 | """Return tuple (x,y,width,height,baseline) giving the bounding box |
| 3914 | and baseline position of the visible part of the line containing |
| 3915 | the character at INDEX.""" |
| 3916 | return self._getints(self.tk.call(self._w, 'dlineinfo', index)) |
| 3917 | |
| 3918 | def dump(self, index1, index2=None, command=None, **kw): |
| 3919 | """Return the contents of the widget between index1 and index2. |