B4J Question [Solved] XLUtils - How to hide grid lines?

LGS

Member
Licensed User
Longtime User
Hello everyone.
I am using XLUtils , where the cells with data I put the corresponding borders. But I haven't found how to programmatically hide excel grid lines.

To show it like this:

1667275870207.png


I appreciate the support
 
Solution
B4X:
sheet.PoiSheet.As(JavaObject).RunMethod("setDisplayGridlines", Array(False))
sheet.PoiSheet.As(JavaObject).RunMethod("setPrintGridlines", Array(False))
Top