Construct a Ttk Combobox widget with the parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS exportselection, justify, height, postcommand, state, textvariable, values, width
(self, master=None, **kw)
| 663 | values.""" |
| 664 | |
| 665 | def __init__(self, master=None, **kw): |
| 666 | """Construct a Ttk Combobox widget with the parent master. |
| 667 | |
| 668 | STANDARD OPTIONS |
| 669 | |
| 670 | class, cursor, style, takefocus |
| 671 | |
| 672 | WIDGET-SPECIFIC OPTIONS |
| 673 | |
| 674 | exportselection, justify, height, postcommand, state, |
| 675 | textvariable, values, width |
| 676 | """ |
| 677 | Entry.__init__(self, master, "ttk::combobox", **kw) |
| 678 | |
| 679 | |
| 680 | def current(self, newindex=None): |