This method is used to combine multiple PDF files into one.
            
    Namespace: 
   InfigoSDK
    Assembly:
   InfigoSDK (in InfigoSDK.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntax
| Visual Basic (Declaration) | 
|---|
| Public Function CombineDocuments ( _
	inputFiles As String(), _
	strOutputFile As String _
) As Boolean | 
| Visual C++ | 
|---|
| public:
bool CombineDocuments(
	array<String^>^ inputFiles, 
	String^ strOutputFile
) | 
Parameters
- inputFiles
- Type: array<
            System..::.String
          >[]()[]
 An array with file names for the input PDF files. The files are combined in order of that array.
- strOutputFile
- Type: System..::.String
 The output file name.
Return Value
Returns true on success.
 See Also
See Also