How to display text in a label vertically
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hello, I want to display text in a label vertically. Can anybody suggest how to do this. thanks, Chito
I dont know if you can use a Windows.Forms.Label to do it. I think you will need to use a StringFormat object and the Graphics class to draw it yourself. check out this [^] MSDN link. It may be exactly what you need. What Would Uncle Steve Do?. -Michael Martin
-
Hello, I want to display text in a label vertically. Can anybody suggest how to do this. thanks, Chito
One thing you can do is to decrease the width of your label to width of a character, and the height of your label to your need! and you will see your text, vertically ! I hope this helps!;) Regards