M mscientist33 Active Member Licensed User Dec 6, 2021 #1 Is there a way to set the text of anotherprogressbar at runtime? I can set it in the designer but the property is not available in code.
Is there a way to set the text of anotherprogressbar at runtime? I can set it in the designer but the property is not available in code.
LucaMs Expert Licensed User Longtime User Dec 7, 2021 #2 [B4X] [XUI] AnotherProgressBar B4X: Dim xView As B4XView = AnotherProgressBar1.mBase.GetView(1) xView.Text = "New Text" xView.TextSize = 20 xView.TextColor = xui.Color_White Upvote 2
[B4X] [XUI] AnotherProgressBar B4X: Dim xView As B4XView = AnotherProgressBar1.mBase.GetView(1) xView.Text = "New Text" xView.TextSize = 20 xView.TextColor = xui.Color_White