Hi Team,
I am trying to generate a word document from scratch using Docx4j. I was able to generate tables, content within tables. Now I am trying to display the content within the table as BULLET points in the below attached format.
I am using the below mentioned code.
public static P getTaskWithBulletin(String tempStr, ObjectFactory factory){
P p = factory.createP();
PPr ppr = factory.createPPr();
PStyle pstyle = factory.createPPrBasePStyle();
NumPr numpr = factory.createPPrBaseNumPr();
NumId numIdElement = ...