MergeDocument.Append
Overloads
Append(Byte[], [Optional] Int32, [Optional] Int32, [Optional] MergeOptions) | Appends a PDF document to the current document. |
Append(PdfDocument) | Appends a PDF document to the current document. |
Append(PdfDocument, Int32, Int32) | Appends a PDF document to the current document. |
Append(PdfDocument, Int32, Int32, MergeOptions) | Appends a PDF document to the current document. |
Append(PdfDocument, MergeOptions) | Appends a PDF document to the current document. |
Append(String) | Appends a PDF document to the current document. |
Append(String, Int32, Int32) | Appends a PDF document to the current document. |
Append(String, Int32, Int32, MergeOptions) | Appends a PDF document to the current document. |
Append(String, MergeOptions) | Appends a PDF document to the current document. |
Append(Byte[], [Optional] Int32, [Optional] Int32, [Optional] MergeOptions)
Appends a PDF document to the current document.
public AppendedPage[] Append(Byte[] pdfData, [int startPage = 1], [int pageCount = -1], [MergeOptions options = null])
Function Append(pdfData As Byte(), Optional startPage As Integer = 1, Optional pageCount As Integer = -1, Optional options As MergeOptions = null) As AppendedPage[]
Parameters
- pdfData
- Byte[]
The byte array of the PDF to import.
- startPage
- Int32
A MergeOptions object specifying the merge options.
- pageCount
- Int32
- options
- MergeOptions
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
PdfSecurityException The PDF file cannot be read because it is encrypted and the owner password is incorrect or not supplied.
Append(PdfDocument)
Appends a PDF document to the current document.
public AppendedPage[] Append(PdfDocument pdfDocument)
Function Append(pdfDocument As PdfDocument) As AppendedPage[]
Parameters
- pdfDocument
- PdfDocument
The PdfDocument to import.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
Append(PdfDocument, Int32, Int32)
Appends a PDF document to the current document.
public AppendedPage[] Append(PdfDocument pdfDocument, int startPage, int pageCount)
Function Append(pdfDocument As PdfDocument, startPage As Integer, pageCount As Integer) As AppendedPage[]
Parameters
- pdfDocument
- PdfDocument
The PdfDocument to import.
- startPage
- Int32
The page to start appending from.
- pageCount
- Int32
The number of pages to append.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
Append(PdfDocument, Int32, Int32, MergeOptions)
Appends a PDF document to the current document.
public AppendedPage[] Append(PdfDocument pdfDocument, int startPage, int pageCount, MergeOptions options)
Function Append(pdfDocument As PdfDocument, startPage As Integer, pageCount As Integer, options As MergeOptions) As AppendedPage[]
Parameters
- pdfDocument
- PdfDocument
The PdfDocument to import.
- startPage
- Int32
The page to start appending from.
- pageCount
- Int32
The number of pages to append.
- options
- MergeOptions
Specifies the merge options.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
Append(PdfDocument, MergeOptions)
Appends a PDF document to the current document.
public AppendedPage[] Append(PdfDocument pdfDocument, MergeOptions options)
Function Append(pdfDocument As PdfDocument, options As MergeOptions) As AppendedPage[]
Parameters
- pdfDocument
- PdfDocument
The PdfDocument to import.
- options
- MergeOptions
A MergeOptions object specifying the merge options.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
Append(String)
Appends a PDF document to the current document.
public AppendedPage[] Append(string filePath)
Function Append(filePath As String) As AppendedPage[]
Parameters
- filePath
- String
The physical file path of the PDF to import.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
PdfSecurityException The PDF file cannot be read because it is encrypted and the owner password is incorrect or not supplied.
Append(String, Int32, Int32)
Appends a PDF document to the current document.
public AppendedPage[] Append(string filePath, int startPage, int pageCount)
Function Append(filePath As String, startPage As Integer, pageCount As Integer) As AppendedPage[]
Parameters
- filePath
- String
The physical file path of the PDF to import.
- startPage
- Int32
The page to start importing from.
- pageCount
- Int32
The number of pages to import.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
PdfSecurityException The PDF file cannot be read because it is encrypted and the owner password is incorrect or not supplied.
Append(String, Int32, Int32, MergeOptions)
Appends a PDF document to the current document.
public AppendedPage[] Append(string filePath, int startPage, int pageCount, MergeOptions options)
Function Append(filePath As String, startPage As Integer, pageCount As Integer, options As MergeOptions) As AppendedPage[]
Parameters
- filePath
- String
The physical file path of the PDF to import.
- startPage
- Int32
The page to start importing from.
- pageCount
- Int32
The number of pages to import.
- options
- MergeOptions
A MergeOptions object specifying the merge options.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
PdfSecurityException The PDF file cannot be read because it is encrypted and the owner password is incorrect or not supplied.
Append(String, MergeOptions)
Appends a PDF document to the current document.
public AppendedPage[] Append(string filePath, MergeOptions options)
Function Append(filePath As String, options As MergeOptions) As AppendedPage[]
Parameters
- filePath
- String
The physical file path of the PDF to import.
- options
- MergeOptions
A MergeOptions object specifying the merge options.
Returns
An array of AppendedPage s that were appended to the document.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Exceptions
PdfParsingException The PDF file cannot be parsed because it is likely corrupt or invalid.
PdfSecurityException The PDF file cannot be read because it is encrypted and the owner password is incorrect or not supplied.