Adjusts the view in the window so that FRACTION of the total height of the canvas is off-screen to the top.
(self, fraction)
| 2003 | return self._getdoubles(res) |
| 2004 | |
| 2005 | def yview_moveto(self, fraction): |
| 2006 | """Adjusts the view in the window so that FRACTION of the |
| 2007 | total height of the canvas is off-screen to the top.""" |
| 2008 | self.tk.call(self._w, 'yview', 'moveto', fraction) |
| 2009 | |
| 2010 | def yview_scroll(self, number, what): |
| 2011 | """Shift the y-view according to NUMBER which is measured in |
no test coverage detected