Query or modify the options of the specified pane. pane is either an integer index or the name of a managed subwindow. If kw is not given, returns a dict of the pane option values. If option is specified then the value for that option is returned. Otherwise, sets the
(self, pane, option=None, **kw)
| 947 | |
| 948 | |
| 949 | def pane(self, pane, option=None, **kw): |
| 950 | """Query or modify the options of the specified pane. |
| 951 | |
| 952 | pane is either an integer index or the name of a managed subwindow. |
| 953 | If kw is not given, returns a dict of the pane option values. If |
| 954 | option is specified then the value for that option is returned. |
| 955 | Otherwise, sets the options to the corresponding values.""" |
| 956 | if option is not None: |
| 957 | kw[option] = None |
| 958 | return _val_or_dict(self.tk, kw, self._w, "pane", pane) |
| 959 | |
| 960 | |
| 961 | def sashpos(self, index, newpos=None): |