Construct a Ttk Labelframe with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS labelanchor, text, underline, padding, labelwidget, width, height
(self, master=None, **kw)
| 745 | or another widget.""" |
| 746 | |
| 747 | def __init__(self, master=None, **kw): |
| 748 | """Construct a Ttk Labelframe with parent master. |
| 749 | |
| 750 | STANDARD OPTIONS |
| 751 | |
| 752 | class, cursor, style, takefocus |
| 753 | |
| 754 | WIDGET-SPECIFIC OPTIONS |
| 755 | labelanchor, text, underline, padding, labelwidget, width, |
| 756 | height |
| 757 | """ |
| 758 | Widget.__init__(self, master, "ttk::labelframe", kw) |
| 759 | |
| 760 | LabelFrame = Labelframe # tkinter name compatibility |
| 761 |