[wxPython] text alignment in listctrl columns

How do I force a column in a wxListCtrl to display text right aligned
(instead of the default left alignment)?

Thanks,
Horst

How do I force a column in a wxListCtrl to display text right aligned
(instead of the default left alignment)?

Just like in the demo:

  self.list.InsertColumn(1, "Title", wxLIST_FORMAT_RIGHT)

ยทยทยท

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!