B4J Question Rotate label

StarinschiAndrei

Active Member
Licensed User
Longtime User
Hello everybody
Could somebody tell me how can i obtain a rotate label ? similar to attached image ?
upload_2015-5-8_18-30-18-png.33953

Thank you
 

Daestrum

Expert
Licensed User
Longtime User
Try
B4X:
    label1.Text = "hello"
    jo = label1
    jo.RunMethod("setRotate",Array(270.0)) ' needs float value
 
Upvote 0
Top