Return true if this widget exists.
(self)
| 1247 | return self.tk.getint(self.tk.call('winfo', 'depth', self._w)) |
| 1248 | |
| 1249 | def winfo_exists(self): |
| 1250 | """Return true if this widget exists.""" |
| 1251 | return self.tk.getint( |
| 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 |