Table of Contents

Class VirtualScrollScrolledEventArgs

Namespace
Nalu
Assembly
Nalu.Maui.VirtualScroll.dll

Event arguments for the scrolled event in VirtualScroll.

public class VirtualScrollScrolledEventArgs : EventArgs
Inheritance
VirtualScrollScrolledEventArgs
Inherited Members

Constructors

VirtualScrollScrolledEventArgs(double, double, double, double)

Initializes a new instance of the VirtualScrollScrolledEventArgs class.

public VirtualScrollScrolledEventArgs(double scrollX, double scrollY, double totalScrollableWidth, double totalScrollableHeight)

Parameters

scrollX double

The current horizontal scroll position in device-independent units.

scrollY double

The current vertical scroll position in device-independent units.

totalScrollableWidth double

The total scrollable width in device-independent units.

totalScrollableHeight double

The total scrollable height in device-independent units.

Properties

ScrollPercentageX

Gets the horizontal scroll percentage (0.0 to 1.0), or 0.0 if not scrollable horizontally.

public double ScrollPercentageX { get; }

Property Value

double

ScrollPercentageY

Gets the vertical scroll percentage (0.0 to 1.0), or 0.0 if not scrollable vertically.

public double ScrollPercentageY { get; }

Property Value

double

ScrollX

Gets the current horizontal scroll position in device-independent units.

public double ScrollX { get; }

Property Value

double

ScrollY

Gets the current vertical scroll position in device-independent units.

public double ScrollY { get; }

Property Value

double

TotalScrollableHeight

Gets the total scrollable height in device-independent units.

public double TotalScrollableHeight { get; }

Property Value

double

TotalScrollableWidth

Gets the total scrollable width in device-independent units.

public double TotalScrollableWidth { get; }

Property Value

double