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

Method yview_scroll

Lib/tkinter/__init__.py:2187–2190  ·  view source on GitHub ↗

Shift the y-view according to NUMBER which is measured in "units" or "pages" (WHAT).

(self, number, what)

Source from the content-addressed store, hash-verified

2185 self.tk.call(self._w, 'yview', 'moveto', fraction)
2186
2187 def yview_scroll(self, number, what):
2188 """Shift the y-view according to NUMBER which is measured in
2189 "units" or "pages" (WHAT)."""
2190 self.tk.call(self._w, 'yview', 'scroll', number, what)
2191
2192
2193class Wm:

Callers 6

text_auto_scrollMethod · 0.80
page_upMethod · 0.80
page_downMethod · 0.80
unit_upMethod · 0.80
unit_downMethod · 0.80
test_scrollMethod · 0.80

Calls 1

callMethod · 0.45

Tested by 1

test_scrollMethod · 0.64