Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Try online
You can add a watermark online by using the Document and Image Merger tool.
To append documents using Aspose.Words, simply invoke the AppendDocument method of the Document class and specify the second document to append it at the end of the first one.
The following code example shows how to append a document:
Document doc1 = new Document(dataDir + "doc1.doc");
Document doc2 = new Document(dataDir + "doc2.doc");
doc1.appendDocument(doc2, ImportFormatMode.KEEP_SOURCE_FORMATTING);
See also:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.