Home:ALL Converter>What does it mean CTP and PPR?

What does it mean CTP and PPR?

Ask Time:2019-08-08T15:49:40         Author:John

Json Formatter

I starting figure out in apache.poi and I couldn't understand what does it mean CTP and PPr in XWPFParagraph. I have following code:

targetParagraph.getCTP()
               .setPPr(index.getParagraph().getCTP().getPPr());

I not found describing of this methods in official documentation apache.poi Can you explain to me what is it or get me some link where I can read about it?

Thanks for help!

Author:John,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/57407697/what-does-it-mean-ctp-and-ppr
Amongalen :

getCTP() returns org.openxmlformats.schemas.wordprocessingml.x2006.main.CTP which from my understanding represends a paragraph on a lower level, strictly related to the xml. It is annotated as @Internal - it can be changed without much notice. \n\nMore of a guess but I'd say that getPPr() returns an object that represents a paragraph properties.",
2019-08-08T07:58:32
yy