Home | History | Annotate | Download | only in lib-tk

Lines Matching refs:column

1180     def bbox(self, item, column=None):
1184 If column is specified, returns the bounding box of that cell.
1187 return self._getints(self.tk.call(self._w, "bbox", item, column)) or ''
1207 def column(self, column, option=None, **kw):
1208 """Query or modify the options for the specified column.
1210 If kw is not given, returns a dict of the column option values. If
1215 return _val_or_dict(self.tk, kw, self._w, "column", column)
1245 def heading(self, column, option=None, **kw):
1246 """Query or modify the heading options for the specified column.
1254 The text to display in the column heading
1256 Specifies an image to display to the right of the column
1265 To configure the tree column heading, call this with column = "#0" """
1274 return _val_or_dict(self.tk, kw, self._w, 'heading', column)
1290 """Returns the data column identifier of the cell at position x.
1292 The tree column has ID #0."""
1293 return self.identify("column", x, 0)
1422 def set(self, item, column=None, value=None):
1425 With one argument, return a dictionary of column/value pairs
1427 value of the specified column. With three arguments, set the
1428 value of given column in given item to the specified value."""
1429 res = self.tk.call(self._w, "set", item, column, value)
1430 if column is None and value is None: