PdfDocument.Append Method (String, PdfDecryptionHandler, PdfMergingOptions)

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfDocument Class > PdfDocument Methods > Append Method > Append Method (String, PdfDecryptionHandler, PdfMergingOptions)
Appends the contents of an existing PDF file with the specified name to this PdfDocument.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void Append(
	string fileName,
	PdfDecryptionHandler handler,
	PdfMergingOptions options
)
VB
Public Sub Append ( 
	fileName As String,
	handler As PdfDecryptionHandler,
	options As PdfMergingOptions
)

Parameters

fileName
Type: System.String
The name of the existing PDF file.
handler
Type: BitMiracle.Docotic.Pdf.PdfDecryptionHandler
The decryption handler to use to decrypt the file.
options
Type: BitMiracle.Docotic.Pdf.PdfMergingOptions
The merging options.

Remarks

Call one of the Save() methods to store the resulting document in a file or a stream.

See Also