wxGrid.SetColLabelAlignment does not work

Robin,

I tried:
myGrid.SetColLabelAlignment(wxALIGN_BOTTOM, wxALIGN_LEFT)
but that still positioned the col label headings centered.

Can I perhaps align the complete column
(not only the ColLabel)?

Something like:
myGrid.SetColAlignment(col, wxALIGN_BOTTOM, wxALIGN_LEFT)

Rüdiger

···

--
Ruediger.Maehl@web.de
Fax/Voice: +49 (0) 180 505 255 932 390
Mobile/SMS: +49 (0) 160 427 4619
_______________________________________________________________________________
Alles unter einem Dach: Informationen, Fun, E-Mails. Bei WEB.DE: http://web.de
Die große Welt der Kommunikation: E-Mail, Fax, SMS, WAP: http://freemail.web.de

I tried:
myGrid.SetColLabelAlignment(wxALIGN_BOTTOM, wxALIGN_LEFT)
but that still positioned the col label headings centered.

Switch the order of the parameters:

myGrid.SetColLabelAlignment(wxALIGN_LEFT, wxALIGN_BOTTOM)

···

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