StringFormatFlags.DirectionVertical

  • Thread starter Thread starter Mark B
  • Start date Start date
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?
 
Back
Top