Hi, 
I believe you have a similar problem like mine.
Getting Number from numbered list.
Is there a simple way to do that using groovy/java?

        doc.getParagraphs().each{XWPFParagraph para->
            def numId = para.getNumID()
            if (numId != null){
                def num = numbering.getNum(numId);
                println num.toString() +  para.getText() //+
para.getNumFmt()
            }
        }




--
View this message in context: 
http://apache-poi.1045710.n5.nabble.com/XWPF-Parsing-or-creating-bullet-points-numbered-lists-with-POI-3-8-tp5710800p5713794.html
Sent from the POI - User mailing list archive at Nabble.com.

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

Reply via email to