Hope all are good. I am relatively new to Boxable and PDFBox and was hoping someone could help me in this regard. I am trying to generate a PDF using PDFBox and since I was required to create tables which I did, now I need to put a hyperlink text in it. I am trying but unable to find any help on this. I know PDFBox has a way of doing it using 'PDAnnotationLink' but that is not working when I'm trying to insert it into a Boxable Cell since that requires only String values.
Bit of my code is something like this,
Row<PDPage> row = table.createRow(rowHeight);
Cell<PDPage> cell = otherDocumentsRow.createCell(30, "Other Documents");
String str = "Attachment link here";
cell = row.createCell(70, str);
Now instead of str text, I am looking to insert a hyperlink text which points to some location (www.example.com). Is this possible or is there a workaround around this.
Thank you in advance and looking forward to hearing from you