/// <summary> /// Creates a new page /// </summary> override public void NewPage(MetaFile meta, MetaPage page) { // Sets the page size for the pdf file, first if it's a qt page if (page.UpdatedPageSize) { FPageWidth = page.PageDetail.PhysicWidth; FPageHeight = page.PageDetail.PhysicHeight; } FPDFFile.NewPage(FPageWidth, FPageHeight); }