labelframe widget.
| 4863 | |
| 4864 | |
| 4865 | class 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 |
no outgoing calls
no test coverage detected
searching dependent graphs…