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, validatecomma
(self, master=None, widget=None, **kw)
| 621 | string to be edited by the user.""" |
| 622 | |
| 623 | def __init__(self, master=None, widget=None, **kw): |
| 624 | """Constructs a Ttk Entry widget with the parent master. |
| 625 | |
| 626 | STANDARD OPTIONS |
| 627 | |
| 628 | class, cursor, style, takefocus, xscrollcommand |
| 629 | |
| 630 | WIDGET-SPECIFIC OPTIONS |
| 631 | |
| 632 | exportselection, invalidcommand, justify, show, state, |
| 633 | textvariable, validate, validatecommand, width |
| 634 | |
| 635 | VALIDATION MODES |
| 636 | |
| 637 | none, key, focus, focusin, focusout, all |
| 638 | """ |
| 639 | Widget.__init__(self, master, widget or "ttk::entry", kw) |
| 640 | |
| 641 | |
| 642 | def bbox(self, index): |