RE: Long XSLF Table needs splitting

2018-06-22 Thread Murphy, Mark
: Nayan Zubeen Bayan [mailto:nayanjyoti...@gmail.com] Sent: Thursday, June 21, 2018 11:34 PM To: POI Users List Subject: Re: Long XSLF Table needs splitting Can someone help me with adding hyperlink to a particular string in an existing word document using Apache POI? By hyperlink I mean hyperlink to fi

Re: Long XSLF Table needs splitting

2018-06-22 Thread pj.fanning
https://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/HyperlinkExample.java The example is xlsx files but the similar APIs exist for other document formats. -- Sent from: http://apache-poi.1045710.n5.nabble.com/POI-User-f2280730.html ---

Re: Long XSLF Table needs splitting

2018-06-21 Thread Nayan Zubeen Bayan
Can someone help me with adding hyperlink to a particular string in an existing word document using Apache POI? By hyperlink I mean hyperlink to file, web address and all. Thank you. On Fri, Jun 22, 2018 at 2:33 AM, Andreas Beeker wrote: > On 6/21/18 5:00 PM, lanpirot wrote: > > Bump. Is there a

Re: Long XSLF Table needs splitting

2018-06-21 Thread Andreas Beeker
On 6/21/18 5:00 PM, lanpirot wrote: > Bump. Is there any workaround to find out the rendered height of a table, a > tablerow or a cell? > The height/width of a cell is fixed/independent from the content - have a look at XSLFTable.getColumnWidth() / .getRowHeight(). For resizing the cell around th

Re: Long XSLF Table needs splitting

2018-06-21 Thread lanpirot
Bump. Is there any workaround to find out the rendered height of a table, a tablerow or a cell? -- Sent from: http://apache-poi.1045710.n5.nabble.com/POI-User-f2280730.html - To unsubscribe, e-mail: user-unsubscr...@poi.apache.

Re: Long XSLF Table needs splitting

2018-06-11 Thread lanpirot
Hi Kiwikings! I will share it, if I manage it ;) Is there a way to get the "real" size of a table? The table.getAnchor() doesn't return the size of the rendered table and the row.getHeight() neither. If the paragraph in a cell wraps n times the rendered row-height is (n * row.getHeight()). Unfort

Re: Long XSLF Table needs splitting

2018-06-06 Thread Andreas Beeker
HI Alexander, unfortunately there's no such splitting feature yet. Currently my POI todo list is too long, to work on that feature soon, but I would be grateful, if you share your implementation in case you'd decide to implement it via POI. Best wishes, Andi signature.asc Description: OpenP

Long XSLF Table needs splitting

2018-06-06 Thread lanpirot
Is there a built-in way to automatically split long tables, over many slides? Without intervention long tables just become so big, that parts of them aren't shown on the slide anymore. (I want to output the same header row on each slide.) I know I could do this "by hand" but don't want to reinven