...
dim sFormat As New StringFormat()
sFormat.FormatFlags = StringFormatFlags.DirectionVertical
...
g.DrawString('Syncfusion', new Font('Arial',16,FontStyle.Italic or FontStyle.Bold ),SystemBrushes.WindowText, new PointF(2,2) , sFormat )
...
StringFormat sFormat = new StringFormat() ;
sFormat.FormatFlags = StringFormatFlags.DirectionVertical ;
...
g.DrawString('Syncfusion', new Font('Arial',16,FontStyle.Italic|FontStyle.Bold ),SystemBrushes.WindowText, new PointF(2,2) ,sFormat) ;
...
Share with