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)
| 907 | either vertically or horizontally.""" |
| 908 | |
| 909 | def __init__(self, master=None, **kw): |
| 910 | """Construct a Ttk Panedwindow with parent master. |
| 911 | |
| 912 | STANDARD OPTIONS |
| 913 | |
| 914 | class, cursor, style, takefocus |
| 915 | |
| 916 | WIDGET-SPECIFIC OPTIONS |
| 917 | |
| 918 | orient, width, height |
| 919 | |
| 920 | PANE OPTIONS |
| 921 | |
| 922 | weight |
| 923 | """ |
| 924 | Widget.__init__(self, master, "ttk::panedwindow", kw) |
| 925 | |
| 926 | |
| 927 | forget = tkinter.PanedWindow.forget # overrides Pack.forget |