Android.Views.View.ScrollX Property
Return the scrolled left position of this view.

Syntax

[get: Android.Runtime.Register("getScrollX", "()I", "GetGetScrollXHandler")]
[set: Android.Runtime.Register("setScrollX", "(I)V", "GetSetScrollX_IHandler")]
public int ScrollX { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

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

Set method documentation [Android Documentation]

Set the horizontal 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