PdfDocument.Append Method (String)

Appends the contents of 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
)
VB
Public Sub Append ( 
	fileName As String
)

Parameters

fileName
Type: System.String
The name of the existing PDF file.

Remarks

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

This method uses default merging options.

See Also