rotate label 90 degrees

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Is there anyway to rotate a label 90 degrees so that the letters in the
label are printing sideways? I need to do this for headers on skinny
columns. Thanks for any help you can offer!!!!!
 
derive your own class from label, overwrite OnPaint and draw the string
using Graphics.DrawString. With that, you can use transformations to rotate
the text.
 
Back
Top