I'm using C# SDK
using Laserfiche.DocumentServices;
using Laserfiche.RepositoryAccess;
I have two or more documents that I need to merge.
1. I started create a new document with: copyto
mEntry.CopyTo("\\TESTCOPY\\mytest", EntryNameOption.AutoRename);
2. I opened the second document and need to append these pages to the new document
DI.CopyPagesTo(DI.AllPages,"\\TESTCOPY\\mytest",mLastpage);
I couldn't find a merge function...
Anyone already have code to do this? It seems like I'm doing this "the long way"
Thanks.