StringFormatFlags.DirectionVertical

M

Mark B

Dim sf As New Drawing.StringFormat
sf.FormatFlags = StringFormatFlags.DirectionVertical
g.DrawString("HELLO", rectangleFont10, Brushes.Black, New PointF(100,100))

Gives HELLO rotated 90 degrees.

I want:

H
E
L
L
O

instead. Does anyone know how to do this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Draw vertical text 2
GDI+ Crashing! 3
Word How to rotate individual letters in word 2016 0
Vertical text 5
Bitmap.Clone 4
Text on Image Resolution 4
String drawing gives me headache... advise very welcome 5
Draw vertical text? 13

Top