Initializes a new instance of the ScrollChangeEventArgs class.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public ScrollChangeEventArgs(
	int newPosition,
	int oldPosition,
	IScrollManager scrollManager
)
Visual Basic
Public Sub New ( 
	newPosition As Integer,
	oldPosition As Integer,
	scrollManager As IScrollManager
)
Visual C++
public:
ScrollChangeEventArgs(
	int newPosition, 
	int oldPosition, 
	IScrollManager^ scrollManager
)
F#
new : 
        newPosition : int * 
        oldPosition : int * 
        scrollManager : IScrollManager -> ScrollChangeEventArgs

Parameters

newPosition
Type: System..::..Int32
The new position.
oldPosition
Type: System..::..Int32
The old position.
scrollManager
Type: Dapfor.Net.Ui..::..IScrollManager
The scroll manager.

See Also