Android Question [B4X] Visible property (B4XFloatTextField)

LucaMs

Expert
Licensed User
Longtime User
Erel, please, tell me (quando, quando, quando 😄) why...

The B4XFloatTextField must not have the Visible property.

I am forced to write:
B4X:
B4XFloatTextField1.mBase.Visible =False
and the AI I use doesn't know this "weirdness", so it logically generates:
B4X:
B4XFloatTextField1.Visible =False

You know better than me that you would only need to add a few lines:
B4X:
Public Sub setVisible(Visible As Boolean)
    mBase.Visible = Visible
End Sub

Public Sub getVisible As Boolean
    Return mBase.Visible
End Sub

so you have a valid reason not to, I suppose.
 
Top