Table of Contents

Class ScrollEventArgs

Namespace
SharpConsoleUI.Controls
Assembly
SharpConsoleUI.dll

Scroll event arguments.

public class ScrollEventArgs : EventArgs
Inheritance
ScrollEventArgs
Inherited Members

Constructors

ScrollEventArgs(ScrollDirection, int, int)

Initializes a new instance of the ScrollEventArgs class.

public ScrollEventArgs(ScrollDirection direction, int verticalOffset, int horizontalOffset)

Parameters

direction ScrollDirection
verticalOffset int
horizontalOffset int

Properties

Direction

Gets the scroll direction.

public ScrollDirection Direction { get; }

Property Value

ScrollDirection

HorizontalOffset

Gets the horizontal scroll offset.

public int HorizontalOffset { get; }

Property Value

int

VerticalOffset

Gets the vertical scroll offset.

public int VerticalOffset { get; }

Property Value

int