B4J Question SetSelection with B4XView?

GuyBooth

Active Member
Licensed User
Longtime User
With the TextField as a TextField object I can arrange for the cursor to be located at the end of the text after a RequestFocus -
For example:
B4X:
            txfCollectionName.RequestFocus
            txfCollectionName.SetSelection(txfCollectionName.Text.Length, txfCollectionName.Text.Length)
With a TextField as a B4XView object, the .SetSelection method is not available.
Is there some way with a B4XView textfield to achieve this?
 
Top