wxStyledTextCtrl is very good, but not fully documented.. any one know how to align text in Right ?
// To create one
this->STYLED_TEXT = new wxStyledTextCtrl(PANEL, wxID_ANY, wxDefaultPosition, wxSize(500, 500));
// To set it RTL
STYLED_TEXT->SetLayoutDirection(wxLayout_RightToLeft);
The question.. how to align text in Right please ?
This didn't work!
this->STYLED_TEXT = new wxStyledTextCtrl(PANEL, wxID_ANY, wxDefaultPosition, wxSize(500, 500), wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxRIGHT);
Thank in advance