views:

91

answers:

1

How Can I force TextField to show a specific part of text on it, when its having multiple lines? Now it seems to show just last line always without user interaction

+2  A: 

Check out the scrollV property. Set it to zero and your text should scroll back up to show the start of the text, set it to maxScrollV to show the last line or set it to any value inbetween those two to show a line of your choice.

grapefrukt
I like to show a specific ROW; is this possible, is there API to count what ScrollV needs to be based on text position/row?
Tom