Table of Contents

Method RemovePage

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

RemovePage(int)

Removes the page at the specified index of the collection of document pages.

public void RemovePage(int index)

Parameters

index int

The zero-based index of the page to remove.

Remarks

Splitting PDF documents is one of the use case for this method. Check the Split PDF documents in C# and VB.NET article to see the other ways to execute the use case.

RemovePage(PdfPage)

Removes the specified page from the collection of document pages.

public void RemovePage(PdfPage page)

Parameters

page PdfPage

The page to remove.

Remarks

Splitting PDF documents is one of the use case for this method. Check the Split PDF documents in C# and VB.NET article to see the other ways to execute the use case.