I managed to get and install scrollerOffest as:
double horizonatalOffest = sv.HorizontalOffset; Debug.WriteLine("horizonlat offset: " + horizonatalOffest.ToString()); sv.ScrollToHorizontalOffset(2000);
The problem is how to get the maximum offset. Let's say I have a scroller from 0 to 50,000. So how can I get the maximum offset? Scrollview.HorizontalOffset returns current offset position? Please note that my scroller grows / shrinks at runtime.
source share