Rmove space before and after paragraph in table i.e. word document

2016-08-22 Thread Krishna Vyas Majji
Hi Team, Good morning, I am adding a paragraph to a TableRowCell . But it is generating spaces before and after the paragraph. Please help me how to remove those extra blank lines. This is my code snippet: //Blank Document XWPFDocument document= new XWPFDocume

RE: Remove space before and after paragraph in table i.e. word document

2016-08-22 Thread Krishna Vyas Majji
Modified Subject. -Original Message- From: Krishna Vyas Majji Sent: Monday, August 22, 2016 12:37 PM To: POI Users List Subject: Bulk Mail : Rmove space before and after paragraph in table i.e. word document Hi Team, Good morning, I am adding a paragraph to a TableRowCell . But it is g

Apache POI - XSLF ooxml library

2016-08-22 Thread Guilherme Viteri
Dear Developers, Is there anyone monitoring the stack overflow forum for #apache-poi ? I have created a couple of post but I haven't gotten any replies recently http://stackoverflow.com/questions/38971376/apache-poi-xslfconnectorshape

how to insert table inside a tablerowcell in word using apache poi

2016-08-22 Thread Krishna Vyas Majji
Hi Team, Can anyone help me on this??? Thanks, Krishna ---Disclaimer-- This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete

RE: Remove space before and after paragraph in table i.e. word document

2016-08-22 Thread Murphy, Mark
The problem is that when creating table, a row containing a cell containing a paragraph containing a blank run is already created. Those are the extra blanks you see. When you do cell.addParagraph(), you are adding a second paragraph. This is not really appropriate behavior, and is likely to cha