DocumentAppendDocument Method |
Appends all pages from the another document specified as parameter to the current document.
A custom range of pages from another document can be appended to the current document calling the
Document.Pages.Add(PdfPage pdfPage) method for each page to be appended.
The appended document must remain open until the current document is saved.
Namespace:
ExpertPdf.PdfCreator
Assembly:
epdfcreator (in epdfcreator.dll) Version: 17.0.0
Syntax public void AppendDocument(
Document doc
)
Public Sub AppendDocument (
doc As Document
)
Parameters
- doc
- Type: ExpertPdf.PdfCreatorDocument
The document to be appended.
Remarks The appended document must remain open until the current document is saved.
See Also