Indeed, there is only a y-position.
But if you need to make some simple text and after that place a picture or draw a line, it can always calculate the size of the displayed text:
var chunk = new Chunk(String.Format("Sample text {0}", )); document.Add(new Paragraph(t)); float curY = writer.GetVerticalPosition(false); float x = document.Left + chunk.GetWidthPoint();
source share