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

Class LabelFrame

Lib/tkinter/__init__.py:4865–4884  ·  view source on GitHub ↗

labelframe widget.

Source from the content-addressed store, hash-verified

4863
4864
4865class LabelFrame(Widget):
4866 """labelframe widget."""
4867
4868 def __init__(self, master=None, cnf={}, **kw):
4869 """Construct a labelframe widget with the parent MASTER.
4870
4871 STANDARD OPTIONS
4872
4873 borderwidth, cursor, font, foreground,
4874 highlightbackground, highlightcolor,
4875 highlightthickness, padx, pady, relief,
4876 takefocus, text
4877
4878 WIDGET-SPECIFIC OPTIONS
4879
4880 background, class, colormap, container,
4881 height, labelanchor, labelwidget,
4882 visual, width
4883 """
4884 Widget.__init__(self, master, 'labelframe', cnf, kw)
4885
4886########################################################################
4887

Callers 6

create_page_fontMethod · 0.85
create_page_highlightMethod · 0.85
create_page_keysMethod · 0.85
create_page_windowsMethod · 0.85
create_page_shedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…