Add checkbutton menu item at INDEX.
(self, index, cnf={}, **kw)
| 3614 | self.insert(index, 'cascade', cnf or kw) |
| 3615 | |
| 3616 | def insert_checkbutton(self, index, cnf={}, **kw): |
| 3617 | """Add checkbutton menu item at INDEX.""" |
| 3618 | self.insert(index, 'checkbutton', cnf or kw) |
| 3619 | |
| 3620 | def insert_command(self, index, cnf={}, **kw): |
| 3621 | """Add command menu item at INDEX.""" |