You can't. If you want to orient your text differently then you'll need to draw it using GDI+. GDI+ drawing is done on the Paint event of the control you want to draw on. This will draw text vertically on a form:You should read the documentation for the Graphics class, it's DrawString method and the StringFormat class, then experiment to see what else you can do.vb.net Code:
Public Class Form1 Private Sub Form1_Paint(ByVal sender As Object, _ ByVal e As PaintEventArgs) Handles Me.Paint e.Graphics.DrawString("Hello World", _ Me.Font, _ Brushes.Black, _ 10, _ 10, _ New StringFormat(StringFormatFlags.DirectionVertical)) End Sub End Class




Reply With Quote