3

I am using Aspose library node collection to read a Word document node by node, but embedded documents are being identified as node of type shape. How can i get the data inside those documents. Is there any way to achieve this using Aspose words or any other library.

f_puras
  • 2,521
  • 4
  • 33
  • 38
lemon chow
  • 303
  • 8

1 Answers1

1

Embedded objects in Aspose.Words Document Object Model are represented by Shape nodes with Shape.getOleFormat() property set. You can check whether OleFormat property is not null to identify embedded OLE objects. You can learn more about working with OLE objects from this article: https://docs.aspose.com/words/java/working-with-ole-objects/

Alexey Noskov
  • 1,722
  • 1
  • 7
  • 13