Read Word Document In C#

Hi,
I am developing word document reading system using aspose.
I am unable to
- read equation
- read Image
- read Table from word document with same format as in word document.

Regards,
Bhushan

Hi Bhushan,


Thanks for your inquiry. We suggest you please read about Aspose.Words Document Object Model (DOM) and Composition Diagrams from here:
http://www.aspose.com/docs/display/wordsnet/Object+Model+Overview
http://www.aspose.com/docs/display/wordsnet/Composition+Diagrams

CompositeNode.GetChildNodes method returns a collection of child nodes that match the specified type. Please use Document.GetChildNodes method with NodeType.Shape to get the images of document and NodeType.Table to get the tables of document.

NoteType.OfficeMath is used for Office Math object. Can be equation, function, matrix or one of other mathematical objects. Can be a collection of mathematical object and also can contain some non-mathematical objects such as runs of text.

Hope this answers your query. Please let us know if you have any more queries.