B4J Question How to look up specific usage of built-in functions in B4XLIB library?

daiweisc

Member
How to look up specific usage of built-in functions in B4XLIB library, for example B4XTable?
For example, How to wholly set four column width in 60dip instead of setting one by one.
 

teddybear

Well-Known Member
Licensed User
B4xlib is a zip file which includes source code, you can unzip it and read it, go there perhaps you can find what you want.
 
Last edited:
Upvote 1

Mahares

Expert
Licensed User
Longtime User
For example, How to wholly set four column width in 60dip instead of setting one by one.
Based on your question, you do not need to go into the library code to find the solution. Add this code after the define the 4 columns of the B4XTable. It is always better to first ask the question than to dive into the library , unless you are at an impasse.
B4X:
For Each c As B4XTableColumn In B4XTable1.Columns
    c.Width= 60dip
Next
 
Upvote 0
Top