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, set
(self, pane, option=None, **kw)
| 937 | |
| 938 | |
| 939 | def pane(self, pane, option=None, **kw): |
| 940 | """Query or modify the options of the specified pane. |
| 941 | |
| 942 | pane is either an integer index or the name of a managed subwindow. |
| 943 | If kw is not given, returns a dict of the pane option values. If |
| 944 | option is specified then the value for that option is returned. |
| 945 | Otherwise, sets the options to the corresponding values.""" |
| 946 | if option is not None: |
| 947 | kw[option] = None |
| 948 | return _val_or_dict(self.tk, kw, self._w, "pane", pane) |
| 949 | |
| 950 | |
| 951 | def sashpos(self, index, newpos=None): |