Auto wrap column in ListCtrl

> I an using a wxListCtrl widget and I need the text of one of the
> columns to
> auto wrap automatically.
>
> How do I do that?
>

wx.ListCtrl doesn't support multi-line items.

wx.Grid does. You can turn off most of the wx.Grid editing and selection
features to get it looking like a list control, and specify that some rows
are higher than others. However, you will have to handle all the drawing
and so on yourself.

Hugh