TextCtrl - Align text to the left in right to left frame alignment

Windows 10
Python 3.7
wxPython 4.1.1

wx.TextCtrl.Create(Panel, wx.ID_ANY, Label, wx.DefaultPosition, Size, style=wx.TE_LEFT)

style=wx.TE_CENTER - the text aligned to the Center
style=wx.TE_LEFT - the text aligned to the Right
style=wx.TE_RIGHT - the text aligned to the Right

I tryed to set the frame to both direction
Frame.SetLayoutDirection(wx.Layout_RightToLeft)
and
Frame.SetLayoutDirection(wx.Layout_LeftToRight)

But still have the same result.

Thanks in advance