Android.Views.View.OverScrollBy Method
Scroll the view with standard behavior for scrolling beyond the normal content boundaries.

Syntax

[Android.Runtime.Register("overScrollBy", "(IIIIIIIIZ)Z", "GetOverScrollBy_IIIIIIIIZHandler")]
protected virtual bool OverScrollBy (int deltaX, int deltaY, int scrollX, int scrollY, int scrollRangeX, int scrollRangeY, int maxOverScrollX, int maxOverScrollY, bool isTouchEvent)

Parameters

deltaX
Change in X in pixels
deltaY
Change in Y in pixels
scrollX
Current X scroll value in pixels before applying deltaX
scrollY
Current Y scroll value in pixels before applying deltaY
scrollRangeX
Maximum content scroll range along the X axis
scrollRangeY
Maximum content scroll range along the Y axis
maxOverScrollX
Number of pixels to overscroll by in either direction along the X axis.
maxOverScrollY
Number of pixels to overscroll by in either direction along the Y axis.
isTouchEvent
true if this scroll operation is the result of a touch event.

Returns

Documentation for this section has not yet been entered.

Remarks

Scroll the view with standard behavior for scrolling beyond the normal content boundaries. Views that call this method should override View.OnOverScrolled(int, System.Int32, System.Int32, System.Int32) to respond to the results of an over-scroll operation. Views can use this method to handle any touch or fling-based scrolling.

[Android Documentation]

Requirements

Namespace: Android.Views
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 9