Add command menu item at INDEX.
(self, index, cnf={}, **kw)
| 3618 | self.insert(index, 'checkbutton', cnf or kw) |
| 3619 | |
| 3620 | def insert_command(self, index, cnf={}, **kw): |
| 3621 | """Add command menu item at INDEX.""" |
| 3622 | self.insert(index, 'command', cnf or kw) |
| 3623 | |
| 3624 | def insert_radiobutton(self, index, cnf={}, **kw): |
| 3625 | """Add radio menu item at INDEX.""" |