ScrollView.ScrollToAsync Method

Definition

Overloads

ScrollToAsync(Double, Double, Boolean)

Returns a task that scrolls the scroll view to a position asynchronously.

ScrollToAsync(Element, ScrollToPosition, Boolean)

Returns a task that scrolls the scroll view to an element asynchronously.

ScrollToAsync(Double, Double, Boolean)

Returns a task that scrolls the scroll view to a position asynchronously.

public:
 System::Threading::Tasks::Task ^ ScrollToAsync(double x, double y, bool animated);
public System.Threading.Tasks.Task ScrollToAsync (double x, double y, bool animated);
member this.ScrollToAsync : double * double * bool -> System.Threading.Tasks.Task
Public Function ScrollToAsync (x As Double, y As Double, animated As Boolean) As Task

Parameters

x
Double

The X position of the finished scroll.

y
Double

The Y position of the finished scroll.

animated
Boolean

Whether or not to animate the scroll.

Returns

Applies to

ScrollToAsync(Element, ScrollToPosition, Boolean)

Returns a task that scrolls the scroll view to an element asynchronously.

public:
 System::Threading::Tasks::Task ^ ScrollToAsync(Microsoft::Maui::Controls::Element ^ element, Microsoft::Maui::Controls::ScrollToPosition position, bool animated);
public System.Threading.Tasks.Task ScrollToAsync (Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated);
member this.ScrollToAsync : Microsoft.Maui.Controls.Element * Microsoft.Maui.Controls.ScrollToPosition * bool -> System.Threading.Tasks.Task
Public Function ScrollToAsync (element As Element, position As ScrollToPosition, animated As Boolean) As Task

Parameters

element
Element

The element to scroll.

position
ScrollToPosition

The scroll position.

animated
Boolean

Whether or not to animate the scroll.

Returns

Applies to