Internal function.
(self, index, itemType, cnf={}, **kw)
| 3605 | self.add('separator', cnf or kw) |
| 3606 | |
| 3607 | def insert(self, index, itemType, cnf={}, **kw): |
| 3608 | """Internal function.""" |
| 3609 | self.tk.call((self._w, 'insert', index, itemType) + |
| 3610 | self._options(cnf, kw)) |
| 3611 | |
| 3612 | def insert_cascade(self, index, cnf={}, **kw): |
| 3613 | """Add hierarchical menu item at INDEX.""" |
no test coverage detected