Dim jo As JavaObject = TreeTableView1
Dim scrolls() As Object = jo.RunMethodJO("lookupAll", Array(".scroll-bar")).RunMethod("toArray", Null)
For Each scroll As Node In scrolls
scroll.Visible = False
scroll.Alpha = 0
Next
However it is not perfect and the table is still scrollable.
Dim jo As JavaObject = TreeTableView1
Dim scrolls() As Object = jo.RunMethodJO("lookupAll", Array(".scroll-bar")).RunMethod("toArray", Null)
For Each scroll As Node In scrolls
scroll.Visible = False
scroll.Alpha = 0
Next
However it is not perfect and the table is still scrollable.