Hello,

I want to know whether a XWPFRun is set to all caps. Since
XWPFRun only offers isitalic, isBold and isStrike i tried this:

for (XWPFRun run : paragraph.getRuns()) {
            ctr = run.getCTR();
            ctrpr = ctr.getRPr();

            if (ctrpr != null) {
                System.out.println(ctrpr.isSetCaps());
            }
}

But it always returns false. Is this feature even implemented?
Or am i doing something wrong here?

Greetings,

Fabian

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to