download file from FileNet IDM using IDM objects
0
i have code to download file from FileNet IDM server. using IDM docid but i want to pass property field and download it. what idmobjects should i use it.? please help on this. am new to IDM. fnObjectType = IDMObjects.idmObjectType.idmObjTypeDocument; int pagec = 0; try { fnGenericObj = fnLibrary.GetObject(fnObjectType, argDocid, objMissing, objMissing, objMissing); fnDoc = (IDMObjects.Document)fnGenericObj; pagec = fnDoc.PageCount; }
c#-4.0 filenet-panagon filenet-idm
share | improve this question
edited Nov 23 '18 a...