.NET Framework Class Library
NeutralFormat.MDMerge Method

<< Click to Display Table of Contents >>

Navigation:  MwPDMApi Namespace > NeutralFormat Class > NeutralFormat Methods >

.NET Framework Class Library
NeutralFormat.MDMerge Method

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, _
 outputPDF As String, _
 Optional appendMode As Boolean = False, _
 Optional bookmarkCode As String = "" _
As Boolean

C#

public bool MDMerge(

 string inputPDForTXT,
 string outputPDF,
 bool appendMode = false,
 string bookmarkCode = ""
)

Visual C++

public:

bool MDMerge(
 StringinputPDForTXT,
 StringoutputPDF,
 bool appendMode = false,
 StringbookmarkCode = L""
)

JavaScript

function mdMerge(inputPDForTXToutputPDFappendModebookmarkCode);

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

NeutralFormat Class

NeutralFormat Members

MwPDMApi Namespace