Represents event for scrolling-related events.

Namespace:  Greatis.Nostalgia
Assembly:  Greatis.Nostalgia (in Greatis.Nostalgia.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub ScrollingEventHandler ( _
	sender As Object, _
	e As ScrollingEventArgs _
)
C#
public delegate void ScrollingEventHandler(
	Object sender,
	ScrollingEventArgs e
)
Visual C++
public delegate void ScrollingEventHandler(
	Object^ sender, 
	ScrollingEventArgs^ e
)
JavaScript
function(sender, e);

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: Greatis.Nostalgia..::.ScrollingEventArgs
Event data.

See Also