Table of Contents

Class ScrollChangedEventArgs

Namespace
nanoFramework.Presentation.Controls
Assembly
nanoFramework.Graphics.dll

Provides data for the ScrollChanged event.

public class ScrollChangedEventArgs : EventArgs
Inheritance
ScrollChangedEventArgs
Inherited Members
Extension Methods

Constructors

ScrollChangedEventArgs(int, int, int, int)

Initializes a new instance of the ScrollChangedEventArgs class.

public ScrollChangedEventArgs(int offsetX, int offsetY, int offsetChangeX, int offsetChangeY)

Parameters

offsetX int

The horizontal offset of the scroll position.

offsetY int

The vertical offset of the scroll position.

offsetChangeX int

The amount of horizontal change in the scroll position.

offsetChangeY int

The amount of vertical change in the scroll position.

Fields

HorizontalChange

Gets the amount of horizontal change in the scroll position.

public readonly int HorizontalChange

Field Value

int

HorizontalOffset

Gets the horizontal offset of the scroll position.

public readonly int HorizontalOffset

Field Value

int

VerticalChange

Gets the amount of vertical change in the scroll position.

public readonly int VerticalChange

Field Value

int

VerticalOffset

Gets the vertical offset of the scroll position.

public readonly int VerticalOffset

Field Value

int