MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/tkinter/ttk.py:747–758  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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
760LabelFrame = Labelframe # tkinter name compatibility
761

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected