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)
| 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): |