merlin2049er Well-Known Member Licensed User Longtime User Sep 27, 2013 #1 Hi, anyone know what the largest possible sized font I can use on a 10" tablet? Thanks, Joe
NJDude Expert Licensed User Longtime User Sep 27, 2013 #2 Just resize the font until you're happy with it, you could size a font all the way to 2000 if you want B4X: Dim RidiculousSize As Float RidiculousSize = 2000 Label1.TextSize = RidiculousSize The code above has too many lines but I just wanted to make a point Upvote 0
Just resize the font until you're happy with it, you could size a font all the way to 2000 if you want B4X: Dim RidiculousSize As Float RidiculousSize = 2000 Label1.TextSize = RidiculousSize The code above has too many lines but I just wanted to make a point
Erel B4X founder Staff member Licensed User Longtime User Sep 28, 2013 #3 You might want to check this class: [custom view] AutoTextSizeLabel Upvote 0
merlin2049er Well-Known Member Licensed User Longtime User Sep 30, 2013 #4 Thanks, I'll try it. Upvote 0