Forum Discussion
Then you can write down below code:
string NativeFileID = docItem.getProperty("native_file");
string ViewableFileID = docItem.getProperty("viewable_file");
Above line will return respective file id's.
To get individual file information:
Item NativeFile = myAras.newItem("File","get");
NativeFile.setID(NativeFileID );
NativeFile = NativeFile.apply();
This is return file item.
Similarly you can get file item for viewable file.
- anhht-hue6 years agoIdeator I
Hi AjinkyaGaikwad,
Thanks a lot for your help, I'll try it now.
- anhht-hue6 years agoIdeator I
Hi AjinkyaGaikwad,
Thanks for your help. Your answer is very helpfull for me. I have another problem. How can I get document with type File of CAD Document ? Thanks
- AjinkyaGaikwad6 years agoIdeator I
Can you please help me understand your case.
- anhht-hue6 years agoIdeator I
Hi AjinkyaGaikwad,
Thanks for your reply, I tried and finnaly find solution for my situation. Thanks a lot ^^