iOS Question Label TextSize after creating

Brandsum

Well-Known Member
Licensed User
In B4I you have to set the text size using font property or you can use b4x view.

B4X:
Dim lblLine As Label
lblLine.Initialize("")
lblLine.TextColor = SecondColor
Dim lx as b4xview = lblLine
lx.TextSize = 20
 
Last edited:
Upvote 0
Top