Hi,
I need a multi line text input, and an Editor is suitable.
When I use it like
Editor edit = new Editor();
I get a text input which shows only 1 line.
And when I create multiple lines, save the text, later create on another page an Editor and pass the multi line text into it like
edit.Text = myText;
when the page shows up, the Editor occupies that much space so that all lines are visible. That is not desired. The editors should remain showing only that much lines at a time the user specify, when the text is larger the user must scroll.
How is scrolling within the Editor done? I swipe, but that doesn't seem to be the right way, and also no scroolbar is visible. To mention, the Editor is on a scroolable page with other views (Buttons, etc.).
How to create an Editor, and configure it, so that it shows perhaps 2 or 3 or so lines?
How to avoid the Editor becoming larger, when a longer multiple line text is passed into it programmatically?
That usually must be easy, but couldn't find any useful informations.
Cheers