Table of Contents

Class ScrollEventArgs

Namespace
MudBlazor
Assembly
MudBlazor.dll
public class ScrollEventArgs : EventArgs
Inheritance
ScrollEventArgs
Inherited Members
Extension Methods

Constructors

ScrollEventArgs()

public ScrollEventArgs()

Properties

FirstChildBoundingClientRect

The BoundingClientRect for the first child of the scrolled element

public BoundingClientRect FirstChildBoundingClientRect { get; set; }

Property Value

BoundingClientRect

NodeName

Node name of the scrolled element

public string NodeName { get; set; }

Property Value

string

ScrollHeight

The ScrollHeight property is a measurement of the height of an element's content, including content not visible on the screen due to overflow

public int ScrollHeight { get; set; }

Property Value

int

ScrollLeft

The ScrollLeft property gets or sets the number of pixels that an element's content is scrolled from its left edge.

public double ScrollLeft { get; set; }

Property Value

double

ScrollTop

The ScrollTop property gets or sets the number of pixels that an element's content is scrolled vertically

public double ScrollTop { get; set; }

Property Value

double

ScrollWidth

The ScrollWidth property is a measurement of the width of an element's content, including content not visible on the screen due to overflow

public int ScrollWidth { get; set; }

Property Value

int