B4J Question FloatTextField CustomView

Nicola Ciaramellano

Member
Licensed User
Longtime User
Hi All,
I'm finding very useful FloatTextField but seems that there isn't a method SetSelection or something like it, that there is in the standard TextField.
Is it right, or am I missing something?
Thanks!
 

DonManfred

Expert
Licensed User
Longtime User
Is it right, or am I missing something?
you are missing the fact that the object is a customview.
You can get the Edittext behind with
B4X:
    Dim editfield As EditText = B4XFloatTextField1.TextField
    ' work with editfield

I did used B4A but in B4J it works the same.

B4X:
    Dim edit As TextField = B4XFloatTextField1.TextField
 
Last edited:
Upvote 0
Top