Alex_Puz Member Licensed User Longtime User Nov 6, 2016 #1 Is there any possibility to change tabstrip's properties at runtime?
Erel B4X founder Staff member Licensed User Longtime User Nov 6, 2016 #2 It depends on the property. Which one do you want to change? Upvote 0
Alex_Puz Member Licensed User Longtime User Nov 6, 2016 #3 Erel said: It depends on the property. Which one do you want to change? Click to expand... Ok, for example: TabStrip1.Tab Height= 0 Upvote 0
Erel said: It depends on the property. Which one do you want to change? Click to expand... Ok, for example: TabStrip1.Tab Height= 0
Erel B4X founder Staff member Licensed User Longtime User Nov 6, 2016 #4 It is not possible to change this property as it is used while the internal views are created. You can access the headers view with: B4X: Dim jo As JavaObject = TabStrip1 Dim v As View = jo.GetField("tabStrip") 'now you can change its Visible property. Upvote 0
It is not possible to change this property as it is used while the internal views are created. You can access the headers view with: B4X: Dim jo As JavaObject = TabStrip1 Dim v As View = jo.GetField("tabStrip") 'now you can change its Visible property.
Alex_Puz Member Licensed User Longtime User Nov 6, 2016 #5 Erel said: It is not possible to change this property as it is used while the internal views are created. You can access the headers view with: B4X: Dim jo As JavaObject = TabStrip1 Dim v As View = jo.GetField("tabStrip") 'now you can change its Visible property. Click to expand... Thank you. Upvote 0
Erel said: It is not possible to change this property as it is used while the internal views are created. You can access the headers view with: B4X: Dim jo As JavaObject = TabStrip1 Dim v As View = jo.GetField("tabStrip") 'now you can change its Visible property. Click to expand... Thank you.