Return the number of pixels for the given distance NUMBER (e.g. "3c") as float.
(self, number)
| 1252 | self.tk.call('winfo', 'exists', self._w)) |
| 1253 | |
| 1254 | def winfo_fpixels(self, number): |
| 1255 | """Return the number of pixels for the given distance NUMBER |
| 1256 | (e.g. "3c") as float.""" |
| 1257 | return self.tk.getdouble(self.tk.call( |
| 1258 | 'winfo', 'fpixels', self._w, number)) |
| 1259 | |
| 1260 | def winfo_geometry(self): |
| 1261 | """Return geometry string for this widget in the form "widthxheight+X+Y".""" |