Table of Contents

Constructor ScrollEventArgs

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

ScrollEventArgs(ScrollEventType, int)

Initializes a new instance of the ScrollEventArgs class using the given values for the Type and NewValue properties.

public ScrollEventArgs(ScrollEventType type, int newValue)

Parameters

type ScrollEventType

One of the ScrollEventType values.

newValue int

The new value for the scroll bar.

ScrollEventArgs(ScrollEventType, int, ScrollBarOrientation)

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, NewValue, and ScrollOrientation properties.

public ScrollEventArgs(ScrollEventType type, int newValue, ScrollBarOrientation scroll)

Parameters

type ScrollEventType

One of the ScrollEventType values.

newValue int

The new value for the scroll bar.

scroll ScrollBarOrientation

One of the ScrollOrientation values.

ScrollEventArgs(ScrollEventType, int, int)

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, OldValue, and NewValue properties.

public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue)

Parameters

type ScrollEventType

One of the ScrollEventType values.

oldValue int

The old value for the scroll bar.

newValue int

The new value for the scroll bar.

ScrollEventArgs(ScrollEventType, int, int, ScrollBarOrientation)

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, OldValue, NewValue, and ScrollOrientation properties.

public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue, ScrollBarOrientation scroll)

Parameters

type ScrollEventType

One of the ScrollEventType values.

oldValue int

The old value for the scroll bar.

newValue int

The new value for the scroll bar.

scroll ScrollBarOrientation

One of the ScrollOrientation values.

ScrollEventArgs()

Initializes a new instance of the ScrollEventArgs.

public ScrollEventArgs()