Hello,
I m tryng to make an Aris Report with result in an Excel File with the Aris wysiwyg graphical Report interface.
When i merge cells in the Aris wysiwyg graphical Report interface, the exécution of the report show the cell seperate and not merged like the graphical design.
Even with changing the code of the graphical report, i cant find the code options to merge cells.
Is there a way to do this with the graphical design or the code.
I ve seen the addRegion methode class XlsSheet, but i m using the p_output.BeginTable, p_output.TableRow(), p_output.TableCell : These dont have a methode addRegion.
Thanks
Omar
Nikita Martyanov on
Hello,
try method
TableCell ( String p_sText, int rowSpan, int colSpan, String p_Font, int p_iFontSize, int p_FontColor, int p_BkColor, int p_iShading, int p_Format, int p_iIndent )
or
TableCellF ( String p_sText, int rowSpan, int colSpan, String p_sStyleSheetName )
instead of TableCell.
---
BR, Nikita