Adjusts the view in the window so that FRACTION of the total width of the canvas is off-screen to the left.
(self, fraction)
| 1982 | return self._getdoubles(res) |
| 1983 | |
| 1984 | def xview_moveto(self, fraction): |
| 1985 | """Adjusts the view in the window so that FRACTION of the |
| 1986 | total width of the canvas is off-screen to the left.""" |
| 1987 | self.tk.call(self._w, 'xview', 'moveto', fraction) |
| 1988 | |
| 1989 | def xview_scroll(self, number, what): |
| 1990 | """Shift the x-view according to NUMBER which is measured in "units" |
no test coverage detected