Hi,
I have set the font family as calibri in my MSWord document. How to take such default font-family using aspose java API.
Here is the code i tried,
Document doc = new Document("src/input/BoldItalic.docx");
String font = doc.getStyles().get("Normal").getFont().getName();
System.out.println("Font-family = " + font);
But i am getting only Times New Roman instead of calibri. Provide me a solution.