.NET Framework Class Library
NeutralFormat.MDMerge Method
|
<< Click to Display Table of Contents >> Navigation: MwPDMApi Namespace > NeutralFormat Class > NeutralFormat Methods > .NET Framework Class Library |
It merges multiple PDF files into a single multi-page PDF.
Namespace: MwPDMApi
Assembly: MwPDMApi (in MwPDMApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Visual Basic |
|---|
Public Function MDMerge ( _ inputPDForTXT As String, _ |
C# |
|---|
public bool MDMerge( string inputPDForTXT, |
Visual C++ |
|---|
public: bool MDMerge( |
JavaScript |
|---|
function mdMerge(inputPDForTXT, outputPDF, appendMode, bookmarkCode); |
Parameters
inputPDForTXT
Type: System.String
PDF to be merged into the outputPDF. It is possible to use a .txt file as inputPDForTXT for merging several PDF files into one PDF file. The text file must contain the filenames of the PDF files that need to be merged, one filename per line. Refers to DBWorks help for pageOptions specifications.
outputPDF
Type: System.String
resulting merged PDF file
appendMode (Optional)
Type: System.Boolean
TRUE append to existing, FALSE create new
bookmarkCode (Optional)
Type: System.String
bookmarks specification. Refers to DBWorks help for additional details.
Return Value
True if the merge operation was successful, False otherwise
Remarks
See Also