Class
RadScrolledEventArgs

Arguments for the event that is raised when RadMauiScrollView is scrolled.

Definition

Namespace:Telerik.Maui.Platform

Assembly:Telerik.Maui.Core.dll

Syntax:

cs-api-definition
public class RadScrolledEventArgs : EventArgs

Inheritance: objectEventArgsRadScrolledEventArgs

Inherited Members EventArgs.Empty

Constructors

RadScrolledEventArgs(double, double)

Initializes a new instance of the RadScrolledEventArgs class.

Declaration

cs-api-definition
public RadScrolledEventArgs(double scrollX, double scrollY)

Parameters

scrollX

double

The X position of the finished scroll.

scrollY

double

The Y position of the finished scroll.

Properties

ScrollX

Gets the X position of the finished scroll.

Declaration

cs-api-definition
public double ScrollX { get; }

Property Value

double

ScrollY

Gets the Y position of the finished scroll.

Declaration

cs-api-definition
public double ScrollY { get; }

Property Value

double