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

Method __init__

Lib/tkinter/ttk.py:726–739  ·  view source on GitHub ↗

Construct a Ttk Label with parent master. STANDARD OPTIONS class, compound, cursor, image, style, takefocus, text, textvariable, underline, width WIDGET-SPECIFIC OPTIONS anchor, background, font, foreground, justify, padding, relief

(self, master=None, **kw)

Source from the content-addressed store, hash-verified

724 """Ttk Label widget displays a textual label and/or image."""
725
726 def __init__(self, master=None, **kw):
727 """Construct a Ttk Label with parent master.
728
729 STANDARD OPTIONS
730
731 class, compound, cursor, image, style, takefocus, text,
732 textvariable, underline, width
733
734 WIDGET-SPECIFIC OPTIONS
735
736 anchor, background, font, foreground, justify, padding,
737 relief, text, wraplength
738 """
739 Widget.__init__(self, master, "ttk::label", kw)
740
741
742class Labelframe(Widget):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected