Constructs a Ttk Entry widget with the parent master. STANDARD OPTIONS class, cursor, style, takefocus, xscrollcommand WIDGET-SPECIFIC OPTIONS exportselection, invalidcommand, justify, show, state, textvariable, validate, validatecommand, width
(self, master=None, widget=None, **kw)
| 628 | string to be edited by the user.""" |
| 629 | |
| 630 | def __init__(self, master=None, widget=None, **kw): |
| 631 | """Constructs a Ttk Entry widget with the parent master. |
| 632 | |
| 633 | STANDARD OPTIONS |
| 634 | |
| 635 | class, cursor, style, takefocus, xscrollcommand |
| 636 | |
| 637 | WIDGET-SPECIFIC OPTIONS |
| 638 | |
| 639 | exportselection, invalidcommand, justify, show, state, |
| 640 | textvariable, validate, validatecommand, width |
| 641 | |
| 642 | VALIDATION MODES |
| 643 | |
| 644 | none, key, focus, focusin, focusout, all |
| 645 | """ |
| 646 | Widget.__init__(self, master, widget or "ttk::entry", kw) |
| 647 | |
| 648 | |
| 649 | def bbox(self, index): |