Re: wxGrid
- Posted by jmduro May 12, 2015
- 1356 views
Also, the documentation for set_cell_alignment still refers to outdated constants: wxLEFT, wxRIGHT, wxCENTER, wxTOP, wxBOTTOM
These should be: wxALIGN_LEFT, wxALIGN_RIGHT, wxALIGN_CENTER_HORIZONTAL, wxALIGN_CENTER_VERTICAL, wxALIGN_TOP, wxALIGN_BOTTOM
The documentation for wxStaticText, get_cell_alignment and set_default_cell_align refer to wxALIGN_CENTRE which is not defined anymore. wxALIGN_CENTER_HORIZONTAL and wxALIGN_CENTER_VERTICAL should be referenced instead.
wxALIGN_CENTER_HORIZONTAL and wxALIGN_CENTER_VERTICAL cans also be written as wxALIGN_CENTRE_HORIZONTAL and wxALIGN_CENTRE_VERTICAL
Jean-Marc