Is it possible to generate a string in a pdf, that will wrap at a specific width, but continue to grow height, and then return the height, or y bottom coordinate of the result.
Currently - I see you can word wrap with a specific Rect:
PdfStringFormat format = new PdfStringFormat
{
WordWrap = PdfWordWrapType.Word
};
var rect = new RectangleF(x, y, maxWidth.Value, 100);
CurrentPageGraphics.DrawString(text, font, brush, rect, format);
... but here, 100 is the height. I'm looking for something along the lines of a PdfLayoutResult after wrapping text that is limited only by width, and not by height.