Table of Contents

Method RemovePages

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

RemovePages(int[])

Removes pages with specified indexes from the collection of document pages.

public void RemovePages(int[] indexes)

Parameters

indexes int[]

The array of zero-based indexes of the pages to remove.

RemovePages(PdfPage[])

Removes specified pages from the collection of document pages.

public void RemovePages(PdfPage[] pages)

Parameters

pages PdfPage[]

The array of pages to remove.

RemovePages(int)

Removes a range of pages from the collection of document pages.

public void RemovePages(int startIndex)

Parameters

startIndex int

The zero-based starting index of pages to remove.

Remarks

The pages are removed from the page at specified starting index to the end of the collection of document pages.

RemovePages(int, int)

Removes a range of pages from the collection of document pages.

public void RemovePages(int index, int count)

Parameters

index int

The zero-based starting index of the range of pages to remove.

count int

The number of pages to remove.