Return true if this widget exists.
(self)
| 1134 | return self.tk.getint(self.tk.call('winfo', 'depth', self._w)) |
| 1135 | |
| 1136 | def winfo_exists(self): |
| 1137 | """Return true if this widget exists.""" |
| 1138 | return self.tk.getint( |
| 1139 | self.tk.call('winfo', 'exists', self._w)) |
| 1140 | |
| 1141 | def winfo_fpixels(self, number): |
| 1142 | """Return the number of pixels for the given distance NUMBER |