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

Method __init__

Lib/tkinter/ttk.py:600–612  ·  view source on GitHub ↗

Construct a Ttk Checkbutton widget with the parent master. STANDARD OPTIONS class, compound, cursor, image, state, style, takefocus, text, textvariable, underline, width WIDGET-SPECIFIC OPTIONS command, offvalue, onvalue, variable

(self, master=None, **kw)

Source from the content-addressed store, hash-verified

598 """Ttk Checkbutton widget which is either in on- or off-state."""
599
600 def __init__(self, master=None, **kw):
601 """Construct a Ttk Checkbutton widget with the parent master.
602
603 STANDARD OPTIONS
604
605 class, compound, cursor, image, state, style, takefocus,
606 text, textvariable, underline, width
607
608 WIDGET-SPECIFIC OPTIONS
609
610 command, offvalue, onvalue, variable
611 """
612 Widget.__init__(self, master, "ttk::checkbutton", kw)
613
614
615 def invoke(self):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected