In PowerPoint Font is a shared resource and can be shared among text object in the presentation.
885886887888889890891892893894895
FontCollection fonts = getDocumentRecord().getEnvironment().getFontCollection(); for (Record ch : fonts.getChildRecords()) { if (ch instanceof FontEntityAtom) { FontEntityAtom atom = (FontEntityAtom) ch; if (atom.getFontIndex() == idx) { return new PPFont(atom); } } } return null; }