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