Return the number of pixels for the given distance NUMBER (e.g. "3c") as float.
(self, number)
| 1234 | self.tk.call('winfo', 'exists', self._w)) |
| 1235 | |
| 1236 | def winfo_fpixels(self, number): |
| 1237 | """Return the number of pixels for the given distance NUMBER |
| 1238 | (e.g. "3c") as float.""" |
| 1239 | return self.tk.getdouble(self.tk.call( |
| 1240 | 'winfo', 'fpixels', self._w, number)) |
| 1241 | |
| 1242 | def winfo_geometry(self): |
| 1243 | """Return geometry string for this widget in the form "widthxheight+X+Y".""" |