Frequently Asked Question:
What’s a filelist?
I'm working with the trial version and want to check if the mergefiles fit's my needs. But I'm not understand what's a filelist. If I take a variable nothing happens with it. If I only type in a name I get an error trying to mergefilelist.
A file list is just a list of files that you've created using the AddToFileList function. Once you've added two or more files to the file list you can then use the MergeFileList function to merge all of the files in the file list into one PDF file.
Here's some sample code:
// Add a range of files to a list.
QP.AddToFileList("FilesToMerge", "sample123.pdf");
QP.AddToFileList("FilesToMerge", "apply_ fingerprint.pdf");
QP.AddToFileList("FilesToMerge", "debenu final tm.pdf");
// Merge the list of files together.
QP.MergeFileList("FilesToMerge", "merged_file_list.pdf");