MCPcopy Index your code
hub / github.com/python/cpython / column

Method column

Lib/tkinter/ttk.py:1217–1225  ·  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

1215
1216
1217 def column(self, column, option=None, **kw):
1218 """Query or modify the options for the specified column.
1219
1220 If kw is not given, returns a dict of the column option values. If
1221 option is specified then the value for that option is returned.
1222 Otherwise, sets the options to the corresponding values."""
1223 if option is not None:
1224 kw[option] = None
1225 return _val_or_dict(self.tk, kw, self._w, "column", column)
1226
1227
1228 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