Add separator.
(self, cnf={}, **kw)
| 3523 | self.add('radiobutton', cnf or kw) |
| 3524 | |
| 3525 | def add_separator(self, cnf={}, **kw): |
| 3526 | """Add separator.""" |
| 3527 | self.add('separator', cnf or kw) |
| 3528 | |
| 3529 | def insert(self, index, itemType, cnf={}, **kw): |
| 3530 | """Internal function.""" |