Hi Aspose Support,
how can I add new pages to Tagged Content.
For example I want to create 5 paragraphs, each on its own page in the document.
Without TaggedContent i could simply say
Document.Pages.Add();
and then create a new Paragraph with
Pages.Paragraphs.Add(...)
How is that possible with tagged PDFs?
I can work with
var headerElement = Document.TaggedContent.CreateHeaderElement(1);
headerElement.SetText("abc");
Document.TaggedContent.RootElement.AppendChild(headerElement);
How can I add a page break after appending the header to RootElement?