Bold is Working perfectly fine using the following code
org.docx4j.wml.RPr rpr = factory.createRPr();
org.docx4j.wml.BooleanDefaultTrue b = new org.docx4j.wml.BooleanDefaultTrue();
b.setVal(true);
rpr.setB(b);
....
But my issue is , i am going set the individual Text objects to Single org.docx4j.wml.R . so here the bold style is applying entire text in R.
Here i want some text is bold and some text is normal ,
as
Name : xyz
Address : xyzstate
is there any possibility to set style to org.docx4j.wml.Text rather than org.docx4j.wml.R.
or any other possibility.
thanx in advance.