Click or drag to resize
Pdf Library for .NET

PdfDocumentAppend Method

Appends all pages from another pdf document to the current pdf document.

Namespace:  SelectPdf
Assembly:  Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax
public void Append(
	PdfDocument doc
)

Parameters

doc
Type: SelectPdfPdfDocument
The document to be appended.
Remarks
A custom range of pages from another document can be appended to the current document calling the Add(PdfPage) method on the Pages collection for each page to be appended.

Important note Important
The appended document must remain opened until the current document is saved.
See Also