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)
| 735 | or another widget.""" |
| 736 | |
| 737 | def __init__(self, master=None, **kw): |
| 738 | """Construct a Ttk Labelframe with parent master. |
| 739 | |
| 740 | STANDARD OPTIONS |
| 741 | |
| 742 | class, cursor, style, takefocus |
| 743 | |
| 744 | WIDGET-SPECIFIC OPTIONS |
| 745 | labelanchor, text, underline, padding, labelwidget, width, |
| 746 | height |
| 747 | """ |
| 748 | Widget.__init__(self, master, "ttk::labelframe", kw) |
| 749 | |
| 750 | LabelFrame = Labelframe # tkinter name compatibility |
| 751 |