https://bz.apache.org/bugzilla/show_bug.cgi?id=63558
Andreas Beeker <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #1 from Andreas Beeker <[email protected]> --- Please add an example - I can't reproduce your issue on the trunk. Tested with Libre Office. > @Test > public void bug63558() throws Exception { > XMLSlideShow ppt = new XMLSlideShow(); > XSLFSlide slide = ppt.createSlide(); > XSLFTable tab = slide.createTable(4,3); > tab.setAnchor(new Rectangle2D.Double(50,50,500,500)); > for (int x=0; x<4; x++) { > for (int y=0; y<3; y++) { > XSLFTableCell cell = tab.getCell(x, y); > // Variant 1 > // cell.setText("("+x+","+y+")"); > // Variant 2 > > cell.addNewTextParagraph().addNewTextRun().setText("("+x+","+y+")"); > } > } > new DrawTableShape(tab).setAllBorders(2., Color.BLACK, > StrokeStyle.LineDash.LG_DASH); > try (FileOutputStream fos = new FileOutputStream("blub.pptx")) { > ppt.write(fos); > } > } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
