I want 1 character in a TextField and I want to rotate that character.
Can I do this?
I think I need a canvas but asking in case
I want 1 character in a TextField and I want to rotate that character.
Can I do this?
I think I need a canvas but asking in case
Yup. Canvas.
Here’s the code for the paint event
Dim ss As New TextShape
ss.Value = "T"
ss.FontName = DispFont
ss.FontSize = 25
ss.HorizontalAlignment = TextShape.Alignment.Center
ss.VerticalAlignment = TextShape.Alignment.Center
ss.Rotation = 3.14159
g.DrawingColor = CBLck
g.DrawRectangle( 0, 0, 40, 40 )
g.DrawingColor = CBLck
g.DrawObject(ss, g.Width \ 2, g.Height \ 2)