is it possible to display a text vertically, say rotate a StaticText
clockwise by 90 degrees?
Alex.
is it possible to display a text vertically, say rotate a StaticText
clockwise by 90 degrees?
Alex.
is it possible to display a text vertically, say rotate a
StaticText clockwise by 90 degrees?Alex.
It's possible to rotate text painted on a graphics Device Context:
for angle in [0.0, 45.0, 90.0, 135.0, 180.0, 225.0, 275.0, 315.0]:
dc.DrawRotatedText(" Rotated Text", 500, 300, angle)
David