Searched refs:newchildren (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 1198 def set_children(self, item, *newchildren): argument 1204 self.tk.call(self._w, "children", item, newchildren)
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 1229 def set_children(self, item, *newchildren): argument 1235 self.tk.call(self._w, "children", item, newchildren)
|
/external/python/cpython2/Doc/library/ |
D | ttk.rst | 866 .. method:: set_children(item, *newchildren) 868 Replaces *item*'s child with *newchildren*. 870 Children present in *item* that are not present in *newchildren* are 871 detached from the tree. No items in *newchildren* may be an ancestor of 872 *item*. Note that not specifying *newchildren* results in detaching
|
/external/python/cpython3/Doc/library/ |
D | tkinter.ttk.rst | 971 .. method:: set_children(item, *newchildren) 973 Replaces *item*'s child with *newchildren*. 975 Children present in *item* that are not present in *newchildren* are 976 detached from the tree. No items in *newchildren* may be an ancestor of 977 *item*. Note that not specifying *newchildren* results in detaching
|