I want to open a .doc (or .docx) file by java and check font-family of
some part of text, font-size of some part of text, tables and
description of tables, right indent, left indent etc.(like this image : https://i.stack.imgur.com/gpApH.png)
Does aspose do this?
Hi there,
Thanks for your inquiry. Please read about Aspose.Words’ DOM from here:
Once a document is loaded into Aspose.Words DOM, you can get the Paragraph and Run nodes of document using CompositeNode.GetChildNodes method. All text of the document is stored in runs of text. Please use Run.Font property to get the font formatting of text. Table.LeftIndent property is used to get or set the value that represents the left indent of the table.
Please let us know if you have any more queries.