Return true if this widget exists.
(self)
| 1229 | return self.tk.getint(self.tk.call('winfo', 'depth', self._w)) |
| 1230 | |
| 1231 | def winfo_exists(self): |
| 1232 | """Return true if this widget exists.""" |
| 1233 | return self.tk.getint( |
| 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 |