Returns a tuple of children belonging to item. If item is not specified, returns root children.
(self, item=None)
| 1198 | |
| 1199 | |
| 1200 | def get_children(self, item=None): |
| 1201 | """Returns a tuple of children belonging to item. |
| 1202 | |
| 1203 | If item is not specified, returns root children.""" |
| 1204 | return self.tk.splitlist( |
| 1205 | self.tk.call(self._w, "children", item or '') or ()) |
| 1206 | |
| 1207 | |
| 1208 | def set_children(self, item, *newchildren): |