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)
| 670 | values.""" |
| 671 | |
| 672 | def __init__(self, master=None, **kw): |
| 673 | """Construct a Ttk Combobox widget with the parent master. |
| 674 | |
| 675 | STANDARD OPTIONS |
| 676 | |
| 677 | class, cursor, style, takefocus |
| 678 | |
| 679 | WIDGET-SPECIFIC OPTIONS |
| 680 | |
| 681 | exportselection, justify, height, postcommand, state, |
| 682 | textvariable, values, width |
| 683 | """ |
| 684 | Entry.__init__(self, master, "ttk::combobox", **kw) |
| 685 | |
| 686 | |
| 687 | def current(self, newindex=None): |