Add radio menu item at INDEX.
(self, index, cnf={}, **kw)
| 3622 | self.insert(index, 'command', cnf or kw) |
| 3623 | |
| 3624 | def insert_radiobutton(self, index, cnf={}, **kw): |
| 3625 | """Add radio menu item at INDEX.""" |
| 3626 | self.insert(index, 'radiobutton', cnf or kw) |
| 3627 | |
| 3628 | def insert_separator(self, index, cnf={}, **kw): |
| 3629 | """Add separator at INDEX.""" |