Return number of cells in the colormap for this widget.
(self)
| 1190 | return self.tk.call(args) |
| 1191 | |
| 1192 | def winfo_cells(self): |
| 1193 | """Return number of cells in the colormap for this widget.""" |
| 1194 | return self.tk.getint( |
| 1195 | self.tk.call('winfo', 'cells', self._w)) |
| 1196 | |
| 1197 | def winfo_children(self): |
| 1198 | """Return a list of all widgets which are children of this widget.""" |