|
__init__(self,
table,
colid,
columnwidth=None,
columntitle=None,
columnicon=None,
sortfunc=None,
resizable=True,
**kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
colPos(self)
The x-coordinate position of the colomn in the table (1=leftmost) |
|
|
|
_createCell(self,
row)
Is overwritten in subclasses |
|
|
|
|
|
_setWidth(self,
width)
Set the width of this column to specified value |
|
|
|
resize(self,
newwidth,
dohidden=False)
If member 'resizable' is True, then do resizing. |
|
|
|
_createTitle(self)
self = column |
|
|
|
|
|
remove(self)
Removes this column from the table |
|
|
|
setSortFunc(self,
function)
Supply a function that would be used to sort the cells in this
column. |
|
|
|
|
|
_defaultSortFunc(self,
cell1,
cell2)
This function always returns that all elements are equal, not doing a
search |
|
|
|
|
|
getCell(self,
row)
Given a row reference, return the cell of this column and that row. |
|
|
|
disable(self)
Disable the column |
|
|
|
enable(self)
Enable the column |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|