Hi there,
I've have a to merge the cell content of a table, which content was populated by code.
I've found examples of doing this for a new table, but not for a table with content previously loaded.
Is there a way to do it?
Thanks in advance
It is currently Sun Apr 06, 2025 12:17 am
List list = getTextFromOtherFile(Path);
for (Object obj : list) {
final StringWriter stringWriter = new StringWriter();
TextUtils.extractText(obj, stringWriter);
final String paragraphString1 = stringWriter.toString();
createTableRow1(tbl, paragraphString1);
}
Total posts 10157 • Total topics 2857 • Total members 2087