Hi All,
How can I change the height of a row in a table in a Report?
What I would like to have is a TableCell with a top and bottom margin how do I implent this in aris?
Any suggestions?
Best regards
Manuel
Hi All,
How can I change the height of a row in a table in a Report?
What I would like to have is a TableCell with a top and bottom margin how do I implent this in aris?
Any suggestions?
Best regards
Manuel
Hello Manuel, A good approach in report script is to working with the "XlsWorkbook" class: Example:
// // var oXlsWorkbook = Context.createExcelWorkbook(Context.getSelectedFile(), Context.getSelectedFile()); // //
Best regards,
Jens
Hi Jens,
thanks for your answer. I think I have to explain my problem a little bit more in detail...
I'm creating tables with reports for word-output.
For example like this way:
oOutput.BeginTable(100,colWidthList,Constants.C_BLACK,Constants.C_WHITE, Constants.FMT_LEFT, 0); oOutput.TableRow(....); oOutput.TableCellF(....); oOutput.TableCellF(....); oOutput.TableRow(....); oOutput.TableCellF(....); oOutput.TableCellF(....); ....
Everything works fine. Now I would like to change the height of a single row.
Is this possible?
Best regards
Hi,
if you are generating a word-document, I don't think that you can... But you could enter additional line breaks (also e.g. with size 2 font) so the height of the row will increase automatically.
oOutput.TableRow(...)
oOutput.TableCellF("", ...)
oOutput.OutputLnF("", ...)
oOutput.OutputLnF("The text for the row itself", ...)
oOutput.OutputLnF("", ...)