I want to set the columns of Tableview as not resizable and here I found the class that runs it but do not know how to translate it into b4j.
someone can help me?
thank you
Sub DisableResize(tv As TableView)
Dim jo As JavaObject = tv
Dim columns As List = jo.RunMethod("getColumns", Null)
For Each col As JavaObject In columns
col.RunMethod("setResizable", Array(False))
Next
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.