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

Method column

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

Query or modify the options for the specified column. If kw is not given, returns a dict of the column option values. If option is specified then the value for that option is returned. Otherwise, sets the options to the corresponding values.

(self, column, option=None, **kw)

Source from the content-addressed store, hash-verified

1205
1206
1207 def column(self, column, option=None, **kw):
1208 """Query or modify the options for the specified column.
1209
1210 If kw is not given, returns a dict of the column option values. If
1211 option is specified then the value for that option is returned.
1212 Otherwise, sets the options to the corresponding values."""
1213 if option is not None:
1214 kw[option] = None
1215 return _val_or_dict(self.tk, kw, self._w, "column", column)
1216
1217
1218 def delete(self, *items):

Callers 3

test_bboxMethod · 0.45
test_columnMethod · 0.45
test_heading_callbackMethod · 0.45

Calls 1

_val_or_dictFunction · 0.85

Tested by 3

test_bboxMethod · 0.36
test_columnMethod · 0.36
test_heading_callbackMethod · 0.36