Android.Views.View.ScrollY Property
Return the scrolled top position of this view.

Syntax

[get: Android.Runtime.Register("getScrollY", "()I", "GetGetScrollYHandler")]
[set: Android.Runtime.Register("setScrollY", "(I)V", "GetSetScrollY_IHandler")]
public int ScrollY { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Return the scrolled top position of this view. This is the top edge of the displayed part of your view. You do not need to draw any pixels above it, since those are outside of the frame of your view on screen.

Set method documentation [Android Documentation]

Set the vertical scrolled position of your view. This will cause a call to View.OnScrollChanged(int, System.Int32, System.Int32, System.Int32) and the view will be invalidated.

Requirements

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