Class
ScrollPanelEventArgs

Represents event data of the Scroll event defined in all controls providing scrolling functionality(e.g. RadScrollBar).

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class ScrollPanelEventArgs : EventArgs

Inheritance: objectEventArgsScrollPanelEventArgs

Inherited Members EventArgs.Empty

Constructors

ScrollPanelEventArgs(Point, Point)

Initializes a new instance of the ScrollPanelEventArgs class.

Declaration

cs-api-definition
public ScrollPanelEventArgs(Point oldValue, Point newValue)

Parameters

oldValue

Point

newValue

Point

Properties

NewValue

Gets the new thumb position (point).

Declaration

cs-api-definition
public Point NewValue { get; }

Property Value

Point

OldValue

Gets the old thumb position (point).

Declaration

cs-api-definition
public Point OldValue { get; }

Property Value

Point