Lines Matching refs:column
1177 def bbox(self, item, column=None):
1181 If column is specified, returns the bounding box of that cell.
1184 return self.tk.call(self._w, "bbox", item, column)
1203 def column(self, column, option=None, **kw):
1204 """Query or modify the options for the specified column.
1206 If kw is not given, returns a dict of the column option values. If
1211 return _val_or_dict(kw, self.tk.call, self._w, "column", column)
1241 def heading(self, column, option=None, **kw):
1242 """Query or modify the heading options for the specified column.
1250 The text to display in the column heading
1252 Specifies an image to display to the right of the column
1261 To configure the tree column heading, call this with column = "#0" """
1270 return _val_or_dict(kw, self.tk.call, self._w, 'heading', column)
1286 """Returns the data column identifier of the cell at position x.
1288 The tree column has ID #0."""
1289 return self.identify("column", x, 0)
1416 def set(self, item, column=None, value=None):
1417 """With one argument, returns a dictionary of column/value pairs
1419 value of the specified column. With three arguments, sets the
1420 value of given column in given item to the specified value."""
1421 res = self.tk.call(self._w, "set", item, column, value)
1422 if column is None and value is None: