Interface IScrollable
Scrolling options for objects in mobile applications.
public interface IScrollable
Methods
ScrollOnePage(ScrollPageDirection)
Scrolls the object one page in the ScrollPageDirection direction.
void ScrollOnePage(ScrollPageDirection direction)
Parameters
directionScrollPageDirectionThe direction to scroll.
ScrollToOffset(int, int)
Scrolls the object to the specified x,y coordinates.
void ScrollToOffset(int x, int y)
Parameters
xintThe x-coordinate for the scroll operation, in pixels. The specified coordinate is relative to the left side of the object.
If an object does not support horizontal scrolling, x = 0. yintThe y-coordinate for the scroll operation, in pixels. The specified coordinate is relative to the top of the object.