Android Question Label properties B4A to B4i

ciginfo

Well-Known Member
Licensed User
Longtime User
Hi,
What replaces .TextSize, .Typeface, .Gravity, .Removeview in label properties?
Thank you
 

klaus

Expert
Licensed User
Longtime User
TypeFace > Label1.Font = Font.CreateNew2(Font.DEFAULT, 12)
TextSize > Label1.Font = Font.CreateNew(12)
Gravity > Label1.TextAlignment = Label1.ALIGNMENT_CENTER
RemoveView > Label1.RemoveViewFromParent
 
Upvote 0
Top