Hi,
Is it possible to get all information about citation sources using Aspose.Words?
With Word Application we can do it by Source Manager (REFERENCES -> Manage Sources).
Hi,
Hi Tahir,
Document doc = new Document(MyDir + "clen201400222_DS3.docx");
CustomXmlPart cxml = doc.getCustomXmlParts().get(0);
FileOutputStream fos = new FileOutputStream(MyDir + "customxml.xml");
fos.write(cxml.getData());
fos.close();
Hi Tahir,