Example #1
0
        public DocumentOutlines(string title, DocumentPage page, float?x, float?y, float?zoom, params DocumentOutlines[] sons)
        {
            this.Title = title;
            this.Page  = page;
            this.X     = x;
            this.Y     = y;
            this.Zoom  = zoom;

            Add(sons);
        }
Example #2
0
 public void NewPage()
 {
     actualPage = Catalog.Pages.AddPage();
     actualPage.SetMediaBox(mediaBox);
 }