I want to write a Static Text with an upside down ^
How can I do it?
I want to write a Static Text with an upside down ^ How can
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are a couple of approaches.
1) If you actually want to do the rotation, you can do it by drawing the text to a wx.GraphicsContext and then rotation it there, write this to a bitmap, and display that.
2) It might be easier to find the right unicode symbol. Having spent way too much of my time lately looking at unicode symbols, I can suggest 02C7, 032C, 2228, 2304, 1D5B, 1D65. Note, though, that not all of these will be present in all fonts.
As far as I know, wx.StaticText doesn’t rotate text.