Hi,
I have created an excel report which populates the folder structure from ARIS. I would like to remove the gridlines in this report from the region where data is not there.
Can you please help me out on the same?
Thanks in Advance !!!
Regards,
Kaushik
Torsten Haase on
Hi Kaushik,
you can modify the lines between table cell using the command Output.SetFrameStyle(frame, width, style):
Example (removes all frame lines):
p_output.SetFrameStyle( Constants.FRAME_TOP, 0, 0)
p_output.SetFrameStyle( Constants.FRAME_LEFT, 0, 0)
p_output.SetFrameStyle( Constants.FRAME_BOTTOM, 0, 0)
p_output.SetFrameStyle( Constants.FRAME_RIGHT, 0, 0)
To reset the default, use
p_output.ResetFrameStyle()
BR, Torsten