How to delete a PDF-Page from PDF-document?

How to delete a PDF-Page from PDF-document?

Regards,
Alex

3 Replies

AD Administrator Syncfusion Team December 9, 2006 01:13 AM UTC

Hi Alex,

We do have support for removing the page from the existing document.

Code snippet [ C# ]
-----------------------
IPDFPage page = ldoc.Pages[0];

//To remove page 0 from pdf document
ldoc.Pages.Remove(page);

Here is a sample for your reference.
Doc_delete.zip

Could you please take a look at this and let me know if you have any other queries.

Regards,
Prakash.


AL Alex December 9, 2006 10:22 AM UTC

Thanks a lot!

>Hi Alex,

We do have support for removing the page from the existing document.

Code snippet [ C# ]
-----------------------
IPDFPage page = ldoc.Pages[0];

//To remove page 0 from pdf document
ldoc.Pages.Remove(page);

Here is a sample for your reference.
Doc_delete.zip

Could you please take a look at this and let me know if you have any other queries.

Regards,
Prakash.


AD Administrator Syncfusion Team December 11, 2006 06:20 PM UTC

Hi Alex,

I think your problem has been resolved now. Thank you for your information and using Syncfusion Essential Studio.

Regards,
Prakash.



Loader.
Up arrow icon