 
       wx.lib.agw.hypertreelist.TreeListColumnInfo¶
  wx.lib.agw.hypertreelist.TreeListColumnInfo¶Class used to store information (width, alignment flags, colours, etc...) about a
HyperTreeList column header.
 Methods Summary¶
 Methods Summary¶| __init__ | Default class constructor. | 
| GetAlignment | Returns the column text alignment. | 
| GetColour | Returns the column text colour. | 
| GetFont | Returns the column text font. | 
| GetImage | Returns the column image index. | 
| GetSelectedImage | Returns the column image index in the selected state. | 
| GetText | Returns the column header label. | 
| GetWidth | Returns the column header width in pixels. | 
| IsEditable | Returns Trueif the column is editable,Falseotherwise. | 
| IsShown | Returns Trueif the column is shown,Falseif it is hidden. | 
| SetAlignment | Sets the column text alignment. | 
| SetColour | Sets the column text colour. | 
| SetEditable | Sets the column as editable or non-editable. | 
| SetFont | Sets the column text font. | 
| SetImage | Sets the column image index. | 
| SetSelectedImage | Sets the column image index in the selected state. | 
| SetShown | Sets the column as shown or hidden. | 
| SetText | Sets the column header label. | 
| SetWidth | Sets the column header width. | 
 Class API¶
 Class API¶TreeListColumnInfo(object)¶Class used to store information (width, alignment flags, colours, etc...) about a
HyperTreeList column header.
__init__(self, input="", width=_DEFAULT_COL_WIDTH, flag=wx.ALIGN_LEFT, image=-1, shown=True, colour=None, edit=False)¶Default class constructor.
| Parameters: | 
 | 
|---|
GetAlignment(self)¶Returns the column text alignment.
GetColour(self)¶Returns the column text colour.
GetFont(self)¶Returns the column text font.
GetImage(self)¶Returns the column image index.
GetSelectedImage(self)¶Returns the column image index in the selected state.
GetText(self)¶Returns the column header label.
GetWidth(self)¶Returns the column header width in pixels.
IsEditable(self)¶Returns True if the column is editable, False otherwise.
IsShown(self)¶Returns True if the column is shown, False if it is hidden.
SetAlignment(self, flag)¶Sets the column text alignment.
| Parameters: | flag – the alignment flag, one of wx.ALIGN_LEFT,wx.ALIGN_RIGHT,wx.ALIGN_CENTER. | 
|---|
SetEditable(self, edit)¶Sets the column as editable or non-editable.
| Parameters: | edit – Trueif the column should be editable,Falseotherwise. | 
|---|
SetImage(self, image)¶Sets the column image index.
| Parameters: | image – an index within the normal image list assigned to HyperTreeListspecifying the image to use for the column. | 
|---|
SetSelectedImage(self, image)¶Sets the column image index in the selected state.
| Parameters: | image – an index within the normal image list assigned to HyperTreeListspecifying the image to use for the column when in
selected state. | 
|---|
SetShown(self, shown)¶Sets the column as shown or hidden.
| Parameters: | shown – Trueif the column should be shown,Falseif it
should be hidden. | 
|---|
SetText(self, text)¶Sets the column header label.
| Parameters: | text – the new column header text. | 
|---|
SetWidth(self, width)¶Sets the column header width.
| Parameters: | width – the column header width, in pixels. | 
|---|