iOS Question Change TextSize in code

stevel05

Expert
Licensed User
Longtime User
pointSize is not (yet) exposed in the Font Object, we can use the NativeObject to get it.

B4X:
Dim FNo As NativeObject = Label1.Font
Log(FNo.GetField("pointSize"))
 
Upvote 0
Top