Adjusts the view in the window so that FRACTION of the total width of the canvas is off-screen to the left.
(self, fraction)
| 2159 | return self._getdoubles(res) |
| 2160 | |
| 2161 | def xview_moveto(self, fraction): |
| 2162 | """Adjusts the view in the window so that FRACTION of the |
| 2163 | total width of the canvas is off-screen to the left.""" |
| 2164 | self.tk.call(self._w, 'xview', 'moveto', fraction) |
| 2165 | |
| 2166 | def xview_scroll(self, number, what): |
| 2167 | """Shift the x-view according to NUMBER which is measured in "units" |
no test coverage detected