I am trying to write some variable length text to a PDF page that I need to be able to position and have overflow to a new page if the text extends passed the bottom of the current page.
I tried using TextParagraph and TextFragment with TextBuilder but I have not been able to successfully get the text to overflow to a new page. If I set the Position property of TextParagraph or TextFragment, it will write all of the text on the same page with no overflow. If I position the text by setting the Rectangle property, it truncates the text wherever the rectangle ends.
Is there a built in way or a workaround that I can use to position the text and have it overflow to a new page if necessary?