MCPcopy Index your code
hub / github.com/python/cpython / dlineinfo

Method dlineinfo

Lib/tkinter/__init__.py:3912–3916  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 4

update_sidebarMethod · 0.80
test_mousewheelMethod · 0.80

Calls 2

_getintsMethod · 0.80
callMethod · 0.45

Tested by 3

test_mousewheelMethod · 0.64