Insert this node under parent at index.
(self, parent, index)
| 692 | return self.insert(tkinter.END, text) |
| 693 | |
| 694 | def move(self, parent, index): |
| 695 | "Insert this node under parent at index." |
| 696 | self.__tree.move(self.__node, parent, index) |
| 697 | |
| 698 | def reattach(self, parent='', index=tkinter.END): |
| 699 | "Attach node to parent at index (defaults to end of root)." |
no outgoing calls
no test coverage detected