Class ScrollChangedEventArgs
Describes a change in the scrolling state and contains the required arguments for a ScrollChanged event.
Inherited Members
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ScrollChangedEventArgs : RadRoutedEventArgs
Properties
ExtentHeight
Gets the updated height of the ScrollViewer extent.
Declaration
public double ExtentHeight { get; }
Property Value
System.Double
|
ExtentHeightChange
Gets a value that indicates the change in height of the ScrollViewer extent.
Declaration
public double ExtentHeightChange { get; }
Property Value
System.Double
|
ExtentWidth
Gets the updated width of the ScrollViewer extent.
Declaration
public double ExtentWidth { get; }
Property Value
System.Double
|
ExtentWidthChange
Gets a value that indicates the change in width of the ScrollViewer extent.
Declaration
public double ExtentWidthChange { get; }
Property Value
System.Double
|
HorizontalChange
Gets a value that indicates the change in horizontal offset for a ScrollViewer.
Declaration
public double HorizontalChange { get; }
Property Value
System.Double
|
HorizontalOffset
Gets the updated horizontal offset value for a ScrollViewer.
Declaration
public double HorizontalOffset { get; }
Property Value
System.Double
|
VerticalChange
Gets a value that indicates the change in vertical offset of a ScrollViewer.
Declaration
public double VerticalChange { get; }
Property Value
System.Double
|
VerticalOffset
Gets the updated value of the vertical offset for a ScrollViewer.
Declaration
public double VerticalOffset { get; }
Property Value
System.Double
|
ViewportHeight
Gets the updated value of the viewport height for a ScrollViewer.
Declaration
public double ViewportHeight { get; }
Property Value
System.Double
|
ViewportHeightChange
Gets a value that indicates the change in value of the viewport height for a ScrollViewer.
Declaration
public double ViewportHeightChange { get; }
Property Value
System.Double
|
ViewportWidth
Gets the updated value of the viewport width for a ScrollViewer.
Declaration
public double ViewportWidth { get; }
Property Value
System.Double
|
ViewportWidthChange
Gets a value that indicates the change in viewport width of a ScrollViewer.
Declaration
public double ViewportWidthChange { get; }
Property Value
System.Double
|
Methods
InvokeEventHandler(Delegate, Object)
Performs proper type casting before invoking the type-safe ScrollChangedEventHandler delegate.
Declaration
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
Parameters
System.Delegate
genericHandler
The event handler to invoke, in this case the ScrollChangedEventHandler delegate. |
System.Object
genericTarget
The target upon which the genericHandler is invoked. |