LV_COLUMN Object

A tuple that describes a Win32 LV_COLUMN tuple. Used by the PyCListCtrl object. A tuple of 4 items, being fmt, cx, pszText, iSubItem

Items

[0] int : fmt

Alignment of the column header and the subitem text in the column.

[1] int : cx

Width of the column.

[2] string : text

Column header text.

[3] int : subItem

Index of subitem associated with the column.
When passed to Python, will always be a tuple of size 4, and items may be None if not available.
When passed from Python, the tuple may be any length up to 4, and any item may be None.