Android Question b4xfloattextfield

elitevenkat

Active Member
Licensed User
Longtime User
hi
what is the equivalent of edittext1.selectall property for b4xfloattextfield? i could not find it in the forum. i want to select all the text in that field when it has focus.
 

DonManfred

Expert
Licensed User
Longtime User
Cast the floatedit to a edittext and use SelectAll
Something like
B4X:
dim edt as EditText = floatedit1.Textfield
edt.SelectAll
 
Last edited:
Upvote 0
Top