Adjusts the view in the window so that FRACTION of the total height of the canvas is off-screen to the top.
(self, fraction)
| 2180 | return self._getdoubles(res) |
| 2181 | |
| 2182 | def yview_moveto(self, fraction): |
| 2183 | """Adjusts the view in the window so that FRACTION of the |
| 2184 | total height of the canvas is off-screen to the top.""" |
| 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 |
no test coverage detected