This code will get me the first page of a file from FileNet
file and convert it to a tiff.
string fileNm = fnDoc.GetCachedFile(1, "",
IDMObjects.idmGetCachedFileOptions.idmDocGetOriginalFileName);
string name = fnDoc.Name;
string onlyName = fnDoc.Name;
m_destFile = pathStart + docSubPath + name + ".tif";
File.Copy(fileNm, m_destFile, true);
File.SetAttributes(m_destFile, FileAttributes.Normal);
How do I instead, loop through the pages and then combine all the tiff's into one tiff file with multiple pages?