Hi Jason,
I am having an issue setting fonts. It only happens when I use a custom font 'MyFont'. The font was created using a font generating tool. If I use a standard font like Arial Bold no problem.
I am basically modifying the font on a content control using the following code:
// Build a new RFont object
org.docx4j.wml.ObjectFactory factory = new org.docx4j.wml.ObjectFactory();
RFonts rfonts = factory.createRFonts();
rfonts.setAscii(sFontName);
rfonts.setCs(sFontName);
rfonts.setHAnsi(sFontName);
// Locate RPr ...