Construct a Ttk Panedwindow with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS orient, width, height PANE OPTIONS weight
(self, master=None, **kw)
| 917 | either vertically or horizontally.""" |
| 918 | |
| 919 | def __init__(self, master=None, **kw): |
| 920 | """Construct a Ttk Panedwindow with parent master. |
| 921 | |
| 922 | STANDARD OPTIONS |
| 923 | |
| 924 | class, cursor, style, takefocus |
| 925 | |
| 926 | WIDGET-SPECIFIC OPTIONS |
| 927 | |
| 928 | orient, width, height |
| 929 | |
| 930 | PANE OPTIONS |
| 931 | |
| 932 | weight |
| 933 | """ |
| 934 | Widget.__init__(self, master, "ttk::panedwindow", kw) |
| 935 | |
| 936 | |
| 937 | forget = tkinter.PanedWindow.forget # overrides Pack.forget |