Scrollable area question

There is read-only TextArea1 inside ContainerControl1 which is the content of ScrollableArea1. The text in TextField1 changes as the user clicks buttons in the View.
If the user scrolls up to read all of the text and leaves the text scrolled up then clicks a button to change the text the display is still scrolled up so the user doesn’t see the beginning of the new text. Is there a way to restore to non-scrolled position programmatically?

With iOSDesignExtensions it is possible

iOSScrollableArea.ScrollToXC(New Xojo.Core.Point(0,0), True)

Jeremie,

Perfect. I should have looked at your scrollableArea extensions more closely.