B bishmedia Member Licensed User Longtime User Apr 27, 2013 #1 I have a large multiline text box When i run the App and click on the text box the cursor always aligns center left, how can i make it align center top like any normal document??
I have a large multiline text box When i run the App and click on the text box the cursor always aligns center left, how can i make it align center top like any normal document??
stevel05 Expert Licensed User Longtime User Apr 27, 2013 #2 If you've created the EditText via the designer, click the + next to Text Style, in there you can see Vertical Alignment, set that to Top. If you've created it in code you need to use it's gravity method similar to: B4X: EditText1.Gravity=Gravity.TOP Upvote 0
If you've created the EditText via the designer, click the + next to Text Style, in there you can see Vertical Alignment, set that to Top. If you've created it in code you need to use it's gravity method similar to: B4X: EditText1.Gravity=Gravity.TOP
B bishmedia Member Licensed User Longtime User Apr 28, 2013 #3 ooops simplest things are always right in front of you!!!! Many Thanks Upvote 0