[vbnet]
Dim myTextFrame As TextFrame = Section1.AddTextFrame
myTextFrame.Orientation = TextOrientation.Upward
myTextFrame.Width = 10
myTextFramew.Top = 0
myTextFrame.Left = -14
myTextFrame.Height = 600
Dim myP As Paragraph = myTextFrame.AddParagraph
myP.Format.Alignment = ParagraphAlignment.Center
myP.Format.Font.Size = 8
myP.AddText("text vertical")
[/vbnet]
Home