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 Add(PdfPage) method of the Pages object for each page to be appended. The appended document must remain open until the current document is saved.

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public void AppendDocument(
	Document doc
)
Visual Basic
Public Sub AppendDocument ( 
	doc As Document
)
Visual C++
public:
void AppendDocument(
	Document^ doc
)

Parameters

doc
Type: EvoPdf..::..Document
The document to be appended.

Remarks

The appended document must remain open until the current document is saved.

See Also