hi there,
i have created a shape at the bottom right corner of a page. now i want to add multiple lines of text at the bottom inside this shape. how can i achieve this?
heres some sample code:
shape = New Shape(singleLetter, ShapeType.TextSimple)
shape.AllowOverlap = True
shape.Stroked = False
shape.RelativeHorizontalPosition = RelativeHorizontalPosition.Page
shape.RelativeVerticalPosition = RelativeVerticalPosition.Page
shape.Height = ConvertUtil.MillimeterToPoint(148)
shape.Width = ConvertUtil.MillimeterToPoint(36.5)
shape.Left = ConvertUtil.MillimeterToPoint(165)
shape.Top = ConvertUtil.MillimeterToPoint(130.9)
shape.AppendChild(New Paragraph(singleLetter))
singleLetter.FirstSection.Body.FirstParagraph.AppendChild(shape)
singleBuilder.MoveToParagraph(paragraphCount + 1, 0)
singleBuilder.Writeln(“Line 1”)
singleBuilder.Writeln(“Line 2”)