Lines Matching refs:column
1184 def bbox(self, item, column=None):
1188 If column is specified, returns the bounding box of that cell.
1191 return self._getints(self.tk.call(self._w, "bbox", item, column)) or ''
1211 def column(self, column, option=None, **kw):
1212 """Query or modify the options for the specified column.
1214 If kw is not given, returns a dict of the column option values. If
1219 return _val_or_dict(self.tk, kw, self._w, "column", column)
1249 def heading(self, column, option=None, **kw):
1250 """Query or modify the heading options for the specified column.
1258 The text to display in the column heading
1260 Specifies an image to display to the right of the column
1269 To configure the tree column heading, call this with column = "#0" """
1278 return _val_or_dict(self.tk, kw, self._w, 'heading', column)
1294 """Returns the data column identifier of the cell at position x.
1296 The tree column has ID #0."""
1297 return self.identify("column", x, 0)
1448 def set(self, item, column=None, value=None):
1451 With one argument, return a dictionary of column/value pairs
1453 value of the specified column. With three arguments, set the
1454 value of given column in given item to the specified value."""
1455 res = self.tk.call(self._w, "set", item, column, value)
1456 if column is None and value is None: