elitevenkat Active Member Licensed User Longtime User Sep 2, 2020 #1 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.
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 Sep 2, 2020 #2 Cast the floatedit to a edittext and use SelectAll Something like B4X: dim edt as EditText = floatedit1.Textfield edt.SelectAll Last edited: Sep 2, 2020 Upvote 0
Cast the floatedit to a edittext and use SelectAll Something like B4X: dim edt as EditText = floatedit1.Textfield edt.SelectAll
elitevenkat Active Member Licensed User Longtime User Sep 3, 2020 #3 DonManfred said: Cast the floatedit to a edittext and use SelectAll Something like B4X: dim edt as EditText = floatedit1.Textfield edt.SelectAll Click to expand... Thank you. It works. Upvote 0
DonManfred said: Cast the floatedit to a edittext and use SelectAll Something like B4X: dim edt as EditText = floatedit1.Textfield edt.SelectAll Click to expand... Thank you. It works.