Is there any way to change any property of a paragraph after I added to the MainDocumentPart ?
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage();
MainDocumentPart mdp = wordMLPackage.getMainDocumentPart();
mdp.addStyledParagraphOfText("NormalIndent", "The following PHP error occurs: ");
In the last row i want preserve the whitespace using setSpace("preserve"), but how?
Thanks, roncsak