Return number of cells in the colormap for this widget.
(self)
| 1208 | return self.tk.call(args) |
| 1209 | |
| 1210 | def winfo_cells(self): |
| 1211 | """Return number of cells in the colormap for this widget.""" |
| 1212 | return self.tk.getint( |
| 1213 | self.tk.call('winfo', 'cells', self._w)) |
| 1214 | |
| 1215 | def winfo_children(self): |
| 1216 | """Return a list of all widgets which are children of this widget.""" |