Android Question Gridline color in B4XTable

Duck

Member
I managed to change alignment and other stuff from B4XTable.
Is it also possible to hide or change the color of the gridlines in the table?
I searched a lot without result.

Thanks
 

Mahares

Expert
Licensed User
Longtime User
Is it also possible to hide or change the color of the gridlines in the table?
Here is the way I do it to hide the grid lines: Don't forget to do it after you define the columns and don't forget the sleep(0) line
B4X:
Sleep(0)
 B4XTable1.GridColor=xui.Color_Transparent  'you can change it to any other color
This is exactly what I do when I'm asked a question.
I just discovered a weakness in Erel. I thought he remembers every line of code he created in every one of his libraries by memory. Apparently, he has a human side too.
 
Upvote 0

Duck

Member
Thanks Mahares, I feel very stupid. It is was already in front of my nose :cool:

I couldn't find the b4xlib(=zip) file Erel mentioned.
I do have B4XTable.B4Xlib file , which shows gibberish when opened with notepad.
Switching from VB.net to B4X, I have a lot to learn :)
 
Upvote 0

teddybear

Well-Known Member
Licensed User
Thanks Mahares, I feel very stupid. It is was already in front of my nose :cool:

I couldn't find the b4xlib(=zip) file Erel mentioned.
I do have B4XTable.B4Xlib file , which shows gibberish when opened with notepad.
Switching from VB.net to B4X, I have a lot to learn :)
Erel has told you b4xlib(=zip) is a zip file, you can open it using 7z or winrar, also you may rename B4XTable.B4Xlib to B4XTable.zip and then open it. there are .bas manifest and layouts in it
 
Upvote 0
Top