Return number of cells in the colormap for this widget.
(self)
| 1095 | return self.tk.call(args) |
| 1096 | |
| 1097 | def winfo_cells(self): |
| 1098 | """Return number of cells in the colormap for this widget.""" |
| 1099 | return self.tk.getint( |
| 1100 | self.tk.call('winfo', 'cells', self._w)) |
| 1101 | |
| 1102 | def winfo_children(self): |
| 1103 | """Return a list of all widgets which are children of this widget.""" |