Return the number of bits per pixel.
(self)
| 1130 | return self._nametowidget(name) |
| 1131 | |
| 1132 | def winfo_depth(self): |
| 1133 | """Return the number of bits per pixel.""" |
| 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.""" |