MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / pane

Method pane

tools/python-3.11.9-amd64/Lib/tkinter/ttk.py:939–948  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Callers 2

test_addMethod · 0.80
test_paneMethod · 0.80

Calls 1

_val_or_dictFunction · 0.85

Tested by 2

test_addMethod · 0.64
test_paneMethod · 0.64