Class ScrollPanelEventArgs
Represents event data of the Scroll event defined in all controls providing scrolling functionality(e.g. RadScrollBar).
Inheritance
System.Object
System.EventArgs
ScrollPanelEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ScrollPanelEventArgs : EventArgs
Constructors
ScrollPanelEventArgs(Point, Point)
Initializes a new instance of the ScrollPanelEventArgs class.
Declaration
public ScrollPanelEventArgs(Point oldValue, Point newValue)
Parameters
System.Drawing.Point
oldValue
|
System.Drawing.Point
newValue
|
Properties
NewValue
Gets the new thumb position (point).
Declaration
public Point NewValue { get; }
Property Value
System.Drawing.Point
|
OldValue
Gets the old thumb position (point).
Declaration
public Point OldValue { get; }
Property Value
System.Drawing.Point
|