Posted by a ceTe Software moderator
Hello Leon,
You can get the last page of the pdf document using the document.Pages[document.Pages.Count - 1] and you can get the height of the Table using the GetRequiredHeight mehtod. Then you will have to calculate the Y position for the other page element to add it below the Table page element. Below is the sample code for it.
tableHeight = table.GetRequiredHeight();
Page page = document.Pages[doc.Pages.Count - 1];
float yposition = tableHeight + 20;
page.Elements.Add(new ceTe.DynamicPDF.PageElements.Label("New Label", 100, yposition, 100, 20));
Thanks,
ceTe Software Support Team