PDFsharp - How to create a 2nd page

前端 未结 4 801
悲哀的现实
悲哀的现实 2020-12-06 13:58

I can\'t find documentation in PDFsharp to show how to add a 2nd page using C#!

As an example, over in VB6 I use a PDF creation method called mjwPDF. To indicate th

4条回答
  •  情深已故
    2020-12-06 14:17

    Before trying to create a new XGraphics object for the new page, dispose the old existing object:

    xgrObject.Dispose();
    

提交回复
热议问题