How can you export multiple files to a single PDF?
(Using SDK (LF) 8.3)
Any Code, Samples, Tutorials, Links???
Thank you!
Below is some of my working code that creates a single PDF from the most recent file in a list of found files; but now I need to a combine all the found files into one PDF for export.
********************
...
SearchResultListing Results = lfSearch.GetResultListing(searchSettings);
instFileID = Results.GetDatumAsString(1, SystemColumn.Id);
...
DocumentInfo docInfo = Document.GetDocumentInfo(Int32.Parse(instFileID, System.Globalization.NumberStyles.AllowThousands), session);
DocumentExporter exporter = new DocumentExporter();
exporter.ExportPdf(docInfo, docInfo.AllPages, PdfExportOptions.IncludeText, strLocalPath + strDocumentFILE);
...