Hi
I am using a older purchased version of EO.PDF (version 2.0.27.2) and I am creating a PDF within a C# Console App. When adding certain content I want to ensure it starts on a new page but I can't see how to do that. I can create new pages but the content doesn't get added to the new pages.
So I have a main AcmBlock called contents that I build up by adding paragraphs, images, tables etc.
Code: C#
AcmBlock contents = new AcmBlock();
// I want to make the following header appear on a new page
AcmParagraph header = BuildHeaderBlock(ti.Title, ti.Font, ti.FontSize);
if (header != null)
{
contents.Children.Add(header);
}
Hope someone can help.